

:root {
  --navy: #061b42;
  --blue: #0a3f9a;
  --royal: #174fc4;
  --sky: #dbe9ff;
  --sand: #b9a284;
  --gold: #d7bc85;
  --cream: #f6f3ed;
  --white: #ffffff;
  --ink: #101828;
  --muted: #5d6778;
  --line: #d8dfeb;
  --shadow: 0 24px 70px rgba(5, 21, 51, 0.2), 0 5px 18px rgba(5, 21, 51, 0.12);
  --hero-title-max: 4rem;
  --header-logo-normal: 96px;
  --header-logo-compact: 67px;
  --header-padding-normal: 10px;
  --header-padding-compact: 7px;
  --header-logo-compact-scale: 0.7;
  --header-padding-compact-scale: 0.7;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

[data-sticky-header] {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 27, 66, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 25px rgba(6, 27, 66, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding-block: var(--header-padding-normal);
  transition: padding 0.26s ease, gap 0.26s ease;
}

.logo-link,
[data-header-logo] {
  display: block;
}

[data-header-logo] {
  height: var(--header-logo-normal);
  transition: height 0.26s ease;
}

[data-proportional-logo] {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

[data-header-logo] img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.site-header.is-compact .header-inner {
  gap: 24px;
  padding-block: var(--header-padding-compact);
  padding-block: calc(
    var(--header-padding-normal) * var(--header-padding-compact-scale)
  );
}

.site-header.is-compact [data-header-logo] {
  height: var(--header-logo-compact);
  height: calc(var(--header-logo-normal) * var(--header-logo-compact-scale));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #243453;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--royal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone,
.button,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
}

.header-phone {
  padding: 11px 17px;
  color: var(--white);
  background: var(--blue);
  white-space: nowrap;
}

.header-phone svg,
.button svg,
.email-button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sky);
  cursor: pointer;
}

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  color: var(--white);
  background: var(--navy);
}

[data-hero] {
  position: relative;
}

.hero-image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    104deg,
    rgba(3, 16, 38, 0.91) 0%,
    rgba(3, 16, 38, 0.68) 37%,
    rgba(3, 16, 38, 0.16) 70%,
    rgba(3, 16, 38, 0.08) 100%
  );
  content: "";
}

.hero-image-frame::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 48%, transparent 55%);
  content: "";
  transform: translateX(-120%);
  animation: image-sweep 1s ease 0.35s forwards;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: image-settle 1s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(1480px, 100%);
  min-height: 720px;
  margin: 0 auto;
}

.glass-main {
  position: absolute;
  top: 8%;
  bottom: 9%;
  left: max(4vw, 34px);
  display: flex;
  align-items: center;
  width: min(760px, 57vw);
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  background: rgba(4, 20, 48, 0.38);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(23px) saturate(125%);
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 13px;
  color: #f3d58f;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

[data-hero-title] {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(clamp(2.45rem, 4.35vw, var(--hero-title-max)), var(--hero-title-max));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-lead,
.inner-hero-copy > p:last-child {
  max-width: 590px;
  margin: 21px 0 0;
  color: #edf3ff;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.button {
  position: relative;
  overflow: hidden;
  min-width: 188px;
  padding: 14px 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--royal);
  box-shadow: 0 10px 30px rgba(20, 78, 196, 0.35);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--white);
  background: rgba(3, 18, 43, 0.45);
  backdrop-filter: blur(12px);
}

.button-light {
  flex: 0 0 auto;
  min-width: 248px;
  color: var(--navy);
  background: var(--white);
}

[data-cta-effect]::after {
  position: absolute;
  inset: -50% auto -50% -42%;
  width: 25%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: cta-shimmer 5.5s ease-in-out 1.4s infinite;
}

[data-call-cta]:hover .lucide-phone-call,
[data-call-cta]:focus-visible .lucide-phone-call {
  animation: phone-ring 0.48s ease-in-out infinite;
}

[data-pencil-cta]:hover .lucide-pencil,
[data-pencil-cta]:focus-visible .lucide-pencil {
  transform-origin: 10% 90%;
  animation: pencil-write 0.58s ease-in-out infinite;
}

.detail-box {
  position: absolute;
  right: max(4vw, 32px);
  bottom: 10%;
  width: min(430px, 35vw);
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(135%);
}

.detail-box > p {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 900;
}

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

.proof-card {
  display: grid;
  min-width: 0;
  padding: 12px;
  border: 1px solid #ced9ed;
  border-radius: 14px;
  background: rgba(218, 232, 255, 0.55);
}

.proof-card strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.proof-card span {
  margin-top: 2px;
  color: #566276;
  font-size: 0.76rem;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section h2,
.site-footer h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading > p:last-child {
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  position: relative;
  min-height: 275px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 27, 66, 0.08);
}

.service-card::after {
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(23, 79, 196, 0.08);
  content: "";
}

.service-card > svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  color: var(--white);
  background: var(--royal);
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

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

.band-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  max-width: none;
  padding-inline: max(6vw, 28px);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--blue));
}

.band-section > div {
  max-width: 760px;
}

.band-section h2,
.band-section p {
  color: var(--white);
}

.band-section p:last-child {
  margin-bottom: 0;
}

.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: 520px;
  padding: clamp(58px, 7vw, 94px) max(5vw, 28px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(41, 103, 226, 0.5), transparent 32%),
    linear-gradient(130deg, var(--navy), #08285f);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.inner-hero-copy,
.inner-image-frame {
  position: relative;
  z-index: 2;
}

.inner-hero-copy {
  justify-self: end;
  width: min(610px, 100%);
}

.inner-image-frame,
[data-image-frame]:not(.hero-image-frame) {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  animation: image-settle 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.inner-image-frame {
  justify-self: start;
  width: min(610px, 100%);
  min-height: 340px;
}

.inner-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.inner-hero-products .inner-image-frame,
.inner-hero-testimonials .inner-image-frame,
.inner-hero-recent-work .inner-image-frame {
  max-width: 540px;
}

.inner-hero-products .inner-image-frame img {
  object-position: center 56%;
}

.inner-hero-contact-us .inner-image-frame {
  min-height: 300px;
  background: #fff;
}

.inner-hero-contact-us .inner-image-frame img {
  min-height: 300px;
  object-fit: contain;
}

.inner-hero-thank-you .inner-image-frame {
  min-height: 250px;
  background: #fff;
}

.inner-hero-thank-you .inner-image-frame img {
  min-height: 250px;
  object-fit: contain;
  padding: 28px;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 55px;
}

.split-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-content h2 {
  margin-top: 44px;
  font-size: 2.25rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 17px 14px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.check-list li::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 17px;
  width: 4px;
  border-radius: 99px;
  background: var(--royal);
  content: "";
}

.contact-card {
  align-self: start;
  padding: 34px;
  border: 1px solid #b8c7e4;
  border-radius: 24px;
  background: #eaf1ff;
  box-shadow: 0 18px 50px rgba(6, 27, 66, 0.1);
}

.contact-card h2 {
  font-size: 2.1rem;
}

.contact-card .hero-actions {
  display: grid;
}

.contact-card .button-secondary {
  border-color: #94a9d2;
  color: var(--navy);
  background: var(--white);
}

.product-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.product-types span {
  padding: 12px 18px;
  border: 1px solid #bdcce8;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

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

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

.manufacturer-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 92px;
  padding: 15px;
  border: 1px solid rgba(196, 205, 222, 0.8);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.manufacturer-grid a:hover {
  border-color: var(--royal);
  box-shadow: 0 10px 26px rgba(5, 21, 51, 0.1);
  transform: translateY(-3px);
}

.manufacturer-grid img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.manufacturer-grid.is-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manufacturer-grid.is-large a {
  flex-direction: column;
  gap: 15px;
  height: 185px;
}

.manufacturer-grid.is-large img {
  max-height: 80px;
}

.manufacturer-grid.is-large span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 850;
}

.manufacturer-grid.is-large span svg {
  width: 16px;
  height: 16px;
}

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

.testimonial-grid blockquote {
  position: relative;
  margin: 0;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 27, 66, 0.08);
}

.testimonial-grid blockquote::before {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #cedbfa;
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-grid blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #36445d;
  font-size: 1.05rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 24px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.testimonial-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 18px;
  padding: 40px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--blue));
}

.testimonial-cta h2 {
  color: var(--white);
  font-size: 2.2rem;
}

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

.gallery-grid figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
}

.contact-card-main {
  display: grid;
  gap: 18px;
}

.contact-card-main p {
  margin: 0;
  color: var(--muted);
}

.email-button {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid #9eb1d5;
  color: var(--navy);
  background: var(--white);
  white-space: nowrap;
}

[data-contact-line] {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}

[data-contact-line] > svg {
  flex: 0 0 auto;
}

[data-fit-email] {
  white-space: nowrap;
}

[data-fit-email] span {
  white-space: nowrap;
}

.contact-details {
  display: grid;
  gap: 17px;
}

.contact-details > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #3e4b60;
  background: var(--white);
}

.contact-details svg {
  width: 23px;
  height: 23px;
  color: var(--royal);
}

.thank-you-content {
  text-align: center;
}

.thank-you-content p {
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-content .button {
  margin-top: 20px;
}

.site-footer {
  color: #dbe5f8;
  background: #04142f;
}

.footer-partners {
  padding: 42px max(4vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #f2f5fb;
}

.footer-partners > p {
  margin: 0 0 20px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.85fr;
  gap: 70px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.footer-brand img {
  width: auto;
  height: 130px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.footer-main > div > a {
  max-width: 100%;
  margin: 0 0 13px;
  color: #e8effc;
}

.footer-main > div > a:hover {
  color: #f3d58f;
}

.footer-main [data-contact-line] svg {
  width: 20px;
  height: 20px;
  color: #f0cf82;
}

.footer-main p {
  margin: 0 0 7px;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px !important;
  font-weight: 850;
}

.facebook-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px max(4vw, 24px);
  color: #17233a;
  background: var(--sand);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-weight: 850;
  text-decoration: underline;
}

[data-back-to-top] {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: var(--royal);
  box-shadow: 0 10px 30px rgba(6, 27, 66, 0.3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

[data-cta-effect] {
  isolation: isolate;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

html.has-js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@keyframes image-settle {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes image-sweep {
  to {
    transform: translateX(520%);
  }
}

@keyframes cta-shimmer {
  0%,
  76% {
    transform: translateX(0) skewX(-18deg);
  }
  92%,
  100% {
    transform: translateX(700%) skewX(-18deg);
  }
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(8deg);
  }
  70% {
    transform: rotate(-8deg);
  }
}

@keyframes pencil-write {
  0%,
  100% {
    transform: rotate(0) translate(0);
  }
  50% {
    transform: rotate(-8deg) translate(2px, -1px);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    width: min(330px, calc(100vw - 40px));
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 11px 13px;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--white);
    background: var(--blue);
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .glass-main {
    width: min(700px, 70vw);
  }

  .detail-box {
    width: min(400px, 43vw);
  }

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

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 24px, 1380px);
  }

  .header-phone {
    justify-self: end;
    width: 48px;
    min-width: 48px;
    padding-inline: 0;
  }

  .header-phone span {
    display: none;
  }

  .home-hero {
    min-height: 850px;
  }

  .hero-shell {
    min-height: 850px;
  }

  .hero-image-frame::before {
    background: linear-gradient(
      180deg,
      rgba(3, 16, 38, 0.5) 0%,
      rgba(3, 16, 38, 0.73) 43%,
      rgba(3, 16, 38, 0.86) 100%
    );
  }

  .hero-background {
    object-position: 68% center;
  }

  .glass-main {
    top: 125px;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    padding: 30px 24px;
  }

  [data-hero-title] {
    font-size: min(clamp(2.25rem, 9.5vw, 3.45rem), var(--hero-title-max));
  }

  .detail-box {
    right: 16px;
    bottom: 22px;
    left: 16px;
    width: auto;
    padding: 17px;
  }

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

  .proof-card {
    min-height: 67px;
  }

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

  .band-section,
  .testimonial-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .inner-hero-copy,
  .inner-image-frame {
    justify-self: stretch;
    width: 100%;
  }

  .inner-image-frame {
    min-height: 290px;
  }

  .inner-image-frame img {
    min-height: 290px;
  }

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

  .testimonial-cta {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --header-logo-normal: 72px;
    --header-logo-compact: 50px;
  }

  .header-inner {
    gap: 10px;
  }

  .home-hero,
  .hero-shell {
    min-height: 860px;
  }

  .glass-main {
    top: 112px;
    padding: 25px 19px;
    border-radius: 22px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .button {
    width: 100%;
    min-width: 0;
  }

  .detail-box > p {
    font-size: 0.9rem;
  }

  .proof-card {
    min-height: 61px;
    padding: 9px;
  }

  .proof-card strong {
    font-size: 0.78rem;
  }

  .proof-card span {
    font-size: 0.67rem;
  }

  .section {
    width: min(100% - 28px, 1200px);
  }

  .service-card,
  .testimonial-grid blockquote,
  .contact-card {
    padding: 26px 22px;
  }

  .gallery-grid,
  .manufacturer-grid.is-large {
    grid-template-columns: 1fr;
  }

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

  .manufacturer-grid a {
    height: 78px;
    padding: 12px;
  }

  .manufacturer-grid img {
    max-height: 45px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1240px);
    gap: 38px;
    padding: 52px 0;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-main > div:nth-child(2) {
    min-width: 0;
  }

  .footer-main [data-fit-email] {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
