:root {
  --blue: #153f76;
  --blue-dark: #0e315f;
  --gold: #c7a66d;
  --gold-dark: #a98442;
  --ink: #111827;
  --muted: #4b5563;
  --paper: #ffffff;
  --soft: #eef3f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto Slab", Georgia, serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 140px;
  display: block;
  pointer-events: none;
}

.brand-panel {
  position: absolute;
  top: 24px;
  left: clamp(24px, 5vw, 78px);
  min-height: 0;
  display: block;
  padding-left: 0;
  background: transparent;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand img {
  width: 198px;
  height: 92px;
  object-fit: contain;
  padding: 3px 6px;
  background: #fff;
}

.nav-toggle,
.nav-toggle-label,
.mobile-menu-button {
  display: none;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quick-info {
  min-height: 128px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 18px 40px 44px;
  color: var(--blue);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 247, 0.9));
  pointer-events: auto;
}

.quick-info a,
.quick-info > span {
  display: grid;
  gap: 3px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.22rem);
  font-weight: 900;
  white-space: nowrap;
}

.quick-info span span,
.quick-info a span {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-bar {
  position: absolute;
  top: 42px;
  left: clamp(260px, 21vw, 360px);
  right: auto;
  width: fit-content;
  min-width: min(760px, calc(100vw - 430px));
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.9vw, 44px);
  margin-top: 0;
  padding: 0 30px;
  background: #fff;
  color: var(--blue-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: auto;
  border: 1px solid rgba(14, 49, 95, 0.08);
  box-shadow: 0 18px 45px rgba(14, 49, 95, 0.12);
}

.nav-bar a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 3px;
  overflow: hidden;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--blue-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-bar .active::before {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 5px;
  width: auto;
  height: 3px;
  background: var(--blue-dark);
  transform: none;
}

.nav-bar .active::after {
  background: linear-gradient(135deg, rgba(199, 166, 109, 0.3), rgba(199, 166, 109, 0.12));
  transform: scaleX(1);
  transform-origin: center;
}

.nav-bar a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-bar a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
}

.nav-bar a:hover::before {
  background: var(--gold);
}

.nav-bar .active {
  color: var(--blue-dark);
}

.nav-bar .active:hover {
  color: #fff;
}

.nav-bar .active:hover::before {
  background: var(--gold);
}

.nav-search {
  position: relative;
  width: 48px;
  height: 42px;
  margin-left: 4px;
  border: 0;
  border-left: 1px solid rgba(14, 49, 95, 0.14);
  background: transparent;
  cursor: pointer;
}

.nav-search::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--blue-dark);
  border-radius: 999px;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.nav-search::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 26px;
  width: 11px;
  height: 3px;
  background: var(--blue-dark);
  transform: rotate(45deg);
  transform-origin: left center;
  transition: background 0.22s ease, transform 0.22s ease;
}

.nav-search:hover::before {
  border-color: var(--gold-dark);
  transform: scale(1.08);
}

.nav-search:hover::after {
  background: var(--gold-dark);
  transform: rotate(45deg) translateX(2px);
}

.hero {
  position: relative;
  min-height: clamp(760px, 88vh, 940px);
  display: block;
  background: #fff;
  overflow: hidden;
}

.hero-blue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  min-height: clamp(760px, 88vh, 940px);
  min-width: 0;
  padding: 112px clamp(28px, 6vw, 82px) 38px clamp(28px, 7vw, 104px);
  color: #fff;
  background: var(--blue-dark);
  border-bottom-right-radius: 230px;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-bottom-right-radius: 230px;
  background: transparent;
}

.hero-photo .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroSlider 15s infinite;
}

.hero-photo .slide-one {
  opacity: 1;
}

.hero-photo .slide-two {
  animation-delay: 5s;
}

.hero-photo .slide-three {
  animation-delay: 10s;
}

@keyframes heroSlider {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(21, 63, 118, 0.25);
}

.slider-dots span:first-child {
  background: var(--gold);
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(14, 49, 95, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--blue-dark);
  border-right: 4px solid var(--blue-dark);
}

.slider-arrow.prev {
  left: calc(45% + 28px);
}

.slider-arrow.next {
  right: 34px;
}

.slider-arrow.prev::before {
  left: 22px;
  transform: rotate(-135deg);
}

.slider-arrow.next::before {
  right: 22px;
  transform: rotate(45deg);
}

.slider-arrow:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.kicker,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

.section-kicker {
  color: #111;
}

.kicker::before,
.section-kicker::before {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--gold);
}

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

h1,
h2 {
  margin-bottom: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9.2ch;
  color: #fff;
  font-size: clamp(2.65rem, 3.75vw, 4.55rem);
}

h1 span,
h2 span {
  display: block;
  color: var(--gold);
}

.hero-blue p:not(.kicker) {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.62;
}

.vertical-mark {
  position: absolute;
  left: 22px;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.text-link {
  position: relative;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
}

.pill-button,
.blue-button,
.contact-card button {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.blue-button,
.contact-card button {
  background: var(--blue);
  color: #fff;
}

.dot-grid {
  position: absolute;
  width: 230px;
  height: 130px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(211, 189, 146, 0.72) 3px, transparent 4px);
  background-size: 36px 26px;
}

.dot-grid.left {
  left: 0;
  top: 39%;
}

.dot-grid.right {
  right: 44px;
  top: 40%;
}

.section {
  padding: clamp(30px, 3.6vw, 56px) clamp(24px, 5vw, 78px);
}

.excellence {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(26px, 4.8vw, 68px);
  align-items: center;
}

.copy {
  min-width: 0;
}

h2 {
  color: var(--blue);
  font-size: clamp(2.35rem, 4.25vw, 4.75rem);
}

.copy > p:not(.section-kicker) {
  max-width: 620px;
  color: #111;
  font-size: 1.02rem;
  line-height: 1.66;
}

.masked-image,
.wide-photo {
  position: relative;
  min-width: 0;
}

.masked-image img,
.wide-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--soft);
  border-top-left-radius: 90px;
  border-bottom-right-radius: 110px;
}

.masked-image.large img {
  aspect-ratio: 1.25 / 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 110px;
}

.line-orb,
.stripe-orb {
  position: absolute;
  right: -42px;
  bottom: -38px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: repeating-linear-gradient(45deg, transparent 0 11px, var(--blue) 12px 16px);
}

.stripe-orb {
  left: -48px;
  right: auto;
  background: repeating-linear-gradient(45deg, transparent 0 11px, var(--gold) 12px 16px);
}

.service-icons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.service-icons article {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 49, 95, 0.1);
  box-shadow: 0 18px 50px rgba(14, 49, 95, 0.08);
}

.service-icons article img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: contain;
  background: var(--soft);
  filter: saturate(0.9);
  transition: transform 0.3s ease;
}

.service-icons article:hover img {
  transform: scale(1.04);
}

.service-icons article div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
}

.service-icons span {
  width: fit-content;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--gold-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
}

.service-icons .featured {
  border-color: rgba(21, 63, 118, 0.26);
  box-shadow: 0 24px 70px rgba(21, 63, 118, 0.16);
}

.service-icons h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.55vw, 1.52rem);
  font-weight: 900;
  line-height: 1;
  color: var(--blue-dark);
}

.product-showcase {
  background: var(--soft);
}

.showcase-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.showcase-heading .section-kicker {
  justify-content: center;
}

.showcase-heading h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-grid article {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(14, 49, 95, 0.1);
  box-shadow: 0 18px 45px rgba(14, 49, 95, 0.08);
  text-align: center;
}

.product-grid h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  font-weight: 900;
}

.product-grid img {
  width: min(250px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border: 8px solid #f0f3f7;
  border-radius: 999px;
  outline: 1px solid rgba(14, 49, 95, 0.22);
}

.trust,
.commitment,
.contact {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: center;
}

.commitment {
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1fr);
}

.corporate-details {
  padding-top: clamp(24px, 3vw, 44px);
  padding-bottom: clamp(24px, 3vw, 44px);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.corporate-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: start;
  padding: clamp(24px, 3.4vw, 44px);
  background: #fff;
  border: 1px solid rgba(14, 49, 95, 0.1);
  box-shadow: 0 20px 60px rgba(14, 49, 95, 0.08);
}

.corporate-card h2 {
  font-size: clamp(2.15rem, 3.6vw, 4.15rem);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-family: "Manrope", Arial, sans-serif;
}

.detail-list span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 15px 16px;
  color: #1f2937;
  background: #f8fafc;
  border: 1px solid rgba(14, 49, 95, 0.08);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.detail-list strong {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wide-photo img {
  aspect-ratio: 16 / 9;
  border-top-left-radius: 0;
  border-bottom-left-radius: 110px;
}

.blue-band {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  padding: 24px clamp(24px, 5vw, 78px);
  background: var(--blue-dark);
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 900;
  text-align: center;
}

.contact {
  align-items: start;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-grid a,
.contact-grid span {
  display: grid;
  gap: 8px;
  color: #111;
  line-height: 1.55;
}

.contact-grid strong {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.22rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 42px);
  background: #fff;
  box-shadow: 0 20px 70px rgba(17, 24, 39, 0.12);
}

.contact-card h3 {
  margin-bottom: 4px;
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
  font-weight: 900;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 15px 20px;
  font: inherit;
}

.contact-card textarea {
  min-height: 112px;
  border-radius: 28px;
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 34px clamp(24px, 5vw, 78px);
  color: #fff;
  background: var(--blue);
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.4rem;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
    min-height: auto;
    display: block;
    background: var(--blue-dark);
    box-shadow: 0 14px 34px rgba(14, 49, 95, 0.18);
  }

  .brand-panel,
  .quick-info {
    min-height: auto;
  }

  .brand-panel {
    position: relative;
    top: auto;
    left: auto;
    padding: 10px 20px 8px;
    background: var(--blue-dark);
  }

  .nav-toggle-label {
    position: absolute;
    top: 26px;
    right: 22px;
    z-index: 24;
    width: 48px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    pointer-events: auto;
  }

  .nav-toggle-label span {
    width: 22px;
    height: 3px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .brand img {
    width: 170px;
    height: 80px;
  }

  .quick-info {
    display: none;
  }

  .nav-bar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: clamp(10px, 2vw, 22px);
    margin-top: 0;
    padding: 0 18px;
    font-size: 0.9rem;
    overflow-x: auto;
    box-shadow: none;
    scrollbar-width: none;
  }

  .nav-bar a {
    padding: 0 11px;
    flex: 0 0 auto;
  }

  .nav-bar::-webkit-scrollbar {
    display: none;
  }

  .nav-search {
    flex: 0 0 48px;
  }

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

  .hero-blue {
    width: 100%;
    min-height: auto;
    padding-top: 78px;
    border-bottom-right-radius: 104px;
  }

  .vertical-mark {
    display: none;
  }

  .hero-photo {
    position: relative;
    min-height: 360px;
    border-bottom-right-radius: 104px;
  }

  .slider-arrow.prev {
    left: 18px;
  }

  .slider-arrow.next {
    right: 18px;
  }

  .excellence,
  .trust,
  .commitment,
  .corporate-card,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) {
  .mobile-menu-button {
    display: none !important;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 126px;
  }

  .brand-panel {
    padding: 8px 14px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand img {
    width: 142px;
    height: 66px;
    padding: 2px 5px;
  }

  .nav-toggle-label {
    display: none !important;
  }

  .mobile-menu-button {
    position: fixed;
    top: 19px;
    right: 14px;
    z-index: 50;
    width: 48px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border: 1px solid rgba(14, 49, 95, 0.08);
    background: #fff;
    box-shadow: 0 12px 28px rgba(14, 49, 95, 0.16);
    cursor: pointer;
  }

  .mobile-menu-button span {
    width: 22px;
    height: 3px;
    background: var(--blue-dark);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-header.menu-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-bar {
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 0;
    padding: 8px 14px 14px;
    font-size: 0.86rem;
    border: 0;
    border-top: 1px solid rgba(14, 49, 95, 0.08);
  }

  .nav-toggle:checked ~ .nav-bar {
    display: flex;
  }

  .site-header.menu-open .nav-bar {
    display: flex;
  }

  .nav-bar a {
    min-height: 42px;
    justify-content: center;
    padding: 0 12px;
    flex: 0 0 auto;
    border-bottom: 1px solid rgba(14, 49, 95, 0.08);
  }

  .nav-bar .active::before {
    left: 9px;
    right: 9px;
  }

  .nav-search {
    width: 100%;
    height: 42px;
    flex-basis: auto;
    margin-left: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(14, 49, 95, 0.08);
  }

  .nav-search::before {
    left: calc(50% - 10px);
  }

  .nav-search::after {
    left: calc(50% + 4px);
  }

  .hero-blue {
    padding: 42px 20px 46px;
    border-bottom-right-radius: 72px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-blue p:not(.kicker) {
    max-width: 29ch;
    font-size: 1rem;
    overflow-wrap: normal;
  }

  .hero-photo {
    min-height: 248px;
    border-bottom-right-radius: 72px;
  }


  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-arrow::before {
    top: 14px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .slider-arrow.prev::before {
    left: 17px;
  }

  .slider-arrow.next::before {
    right: 17px;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(2.3rem, 12vw, 2.75rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 2.65rem);
  }

  .section {
    padding: 42px 20px;
  }

  .kicker,
  .section-kicker {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .kicker::before,
  .section-kicker::before {
    width: 44px;
  }

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

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

  .product-grid article,
  .service-icons article {
    padding: 14px;
  }

  .service-icons article div {
    min-height: auto;
    padding: 16px 10px 4px;
  }

  .product-grid img {
    width: min(220px, 100%);
  }

  .service-icons article {
    display: block;
  }

  .line-orb,
  .stripe-orb,
  .dot-grid {
    display: none;
  }

  .masked-image img,
  .masked-image.large img,
  .wide-photo img {
    border-top-left-radius: 42px;
    border-bottom-right-radius: 52px;
    border-bottom-left-radius: 0;
  }

  .blue-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .corporate-card {
    padding: 22px 18px;
  }

  .detail-list span,
  .contact-grid a,
  .contact-grid span {
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 22px 18px;
  }

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

@media (max-width: 420px) {
  .nav-bar {
    font-size: 0.69rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    min-height: auto;
    padding: 8px 12px 12px;
    overflow: visible;
  }

  .nav-bar a {
    min-height: 40px;
    padding: 0 10px;
  }

  .nav-search {
    width: 100%;
    height: 40px;
    flex-basis: auto;
  }

  .hero-blue {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pill-button,
  .blue-button {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}
