@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Syne:wght@600;700;800&display=swap");

:root {
  --color-black: #030303;
  --color-ink: #101010;
  --color-cream: #f4f3ef;
  --color-soft: #fdfde1;
  --color-red: #e52727;
  --color-red-soft: #ffe7e7;
  --color-line: #171717;
  --color-muted: #595959;
  --container: 1320px;
  --wide-container: 1240px;
  --radius-lg: 18px;
  --radius-pill: 5px;
  --shadow-button: 0 5px 0 var(--color-ink);
  --section-h2-size: clamp(38px, 3vw, 66px);
  --font-main: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-title: "Syne", var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
}

p {
  font-family: var(--font-main);
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(var(--container), calc(100% - 40px));
  margin: 23px auto 0;
  color: var(--color-cream);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 55px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 31px;
  font-size: 17px;
  font-weight: 400;
}

.main-nav a,
.text-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--color-red);
}

.nav-dropdown {
  position: relative;
  padding-block: 12px;
  margin-block: -12px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 230px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-cream);
  padding: 10px;
  color: var(--color-ink);
  box-shadow: 5px 5px 0 var(--color-line);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #ff2d2d;
  color: #fdfde1;
}

.header-cta,
.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-line);
  border-radius: 100px;
  background: #ff2d2d;
  color: #fdfde1;
  font-weight: 850;
  box-shadow: 0 var(--button-layer-depth) 0 -1px #fbfaf1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  --button-layer-depth: 6px;
  min-width: 132px;
  min-height: 34px;
  padding: 0 24px;
  border-width: 1px;
  font-size: 13px;
  font-weight: 400;
}

.pill-button {
  --button-layer-depth: 8px;
  justify-content: space-between;
  gap: 18px;
  width: 360px;
  min-height: 62px;
  padding: 0 7px 0 42px;
  border-width: 3px;
  font-size: 16px;
  font-weight: 400;
}

.header-cta:hover,
.pill-button:hover {
  transform: translateY(5px);
  --button-layer-depth: 3px;
  background: #e52727;
}

.header-cta:hover {
  transform: translateY(2px);
  background: #e52727;
  color: #fdfde1;
}

.pill-button:hover {
  background: #e52727;
}

.button-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-black);
}

.button-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(22%) saturate(355%) hue-rotate(7deg) brightness(107%) contrast(98%);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid #fbfaf1;
  border-radius: 10px;
  background: #e52727;
  color: currentColor;
  cursor: pointer;
  box-shadow: 0 5px 0 #5e5e5e;
  transition: transform 220ms cubic-bezier(.16, 1, .3, 1), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-toggle::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(253, 253, 225, .18);
  border-radius: 6px;
  content: "";
  transform: scale(.72) rotate(0deg);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1), opacity 220ms ease;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: top 220ms cubic-bezier(.16, 1, .3, 1), transform 280ms cubic-bezier(.16, 1, .3, 1), width 220ms ease, background 220ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
  transform: translateX(-50%);
}

.nav-toggle span:last-child {
  top: 25px;
  width: 14px;
  transform: translateX(-50%);
}

.nav-toggle[aria-expanded="true"] {
  transform: translateY(4px) rotate(-3deg);
  border-color: #ff2d2d;
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 1px 0 rgba(253, 253, 225, .22);
}

.nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  width: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  width: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu-panel {
  display: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--color-black);
  color: #fdfde1;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 45, 45, .08) 0,
      rgba(255, 45, 45, .08) 1px,
      transparent 1px,
      transparent 8px
    ),
    radial-gradient(circle at 18% 22%, rgba(255, 45, 45, .16), transparent 18%),
    radial-gradient(circle at 78% 80%, rgba(255, 45, 45, .13), transparent 16%);
  content: "";
  opacity: .48;
  pointer-events: none;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-panel {
  position: relative;
  width: min(520px, calc(100% - 34px));
  min-height: min(900px, calc(100vh - 34px));
  padding: clamp(38px, 6vh, 62px) clamp(28px, 6vw, 50px);
  display: grid;
  align-content: center;
  justify-items: center;
  border: 4px solid #b9151b;
  background:
    linear-gradient(rgba(0, 0, 0, .92), rgba(0, 0, 0, .98)),
    linear-gradient(to top, rgba(255, 45, 45, .18), transparent 32%);
  box-shadow:
    inset 0 0 36px rgba(255, 45, 45, .22),
    0 0 34px rgba(255, 45, 45, .18);
  clip-path: polygon(
    5% 0,
    95% 0,
    100% 4%,
    100% 26%,
    96% 29%,
    96% 45%,
    100% 48%,
    100% 96%,
    95% 100%,
    5% 100%,
    0 96%,
    0 48%,
    4% 45%,
    4% 29%,
    0 26%,
    0 4%
  );
  overflow: hidden;
}

.loader-panel::before,
.loader-panel::after {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 45, .8), transparent);
  content: "";
}

.loader-panel::before {
  top: 22px;
}

.loader-panel::after {
  bottom: 22px;
}

.loader-stars {
  position: absolute;
  inset: 70px 42px auto;
  height: 230px;
  pointer-events: none;
}

.loader-stars span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fdfde1;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(253, 253, 225, .75);
  animation: loaderTwinkle 1200ms steps(2, end) infinite;
}

.loader-stars span::before,
.loader-stars span::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.loader-stars span::before {
  top: 50%;
  left: -8px;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
}

.loader-stars span::after {
  top: -8px;
  left: 50%;
  width: 2px;
  height: 20px;
  transform: translateX(-50%);
}

.loader-stars span:nth-child(1) {
  top: 30px;
  left: 24%;
}

.loader-stars span:nth-child(2) {
  top: 86px;
  right: 18%;
  color: #ff2d2d;
  animation-delay: 180ms;
}

.loader-stars span:nth-child(3) {
  top: 150px;
  left: 12%;
  color: #ff2d2d;
  animation-delay: 360ms;
}

.loader-stars span:nth-child(4) {
  top: 166px;
  right: 8%;
  animation-delay: 520ms;
}

.loader-stars span:nth-child(5) {
  top: 112px;
  left: 58%;
  width: 4px;
  height: 4px;
  border: 0;
  background: #fdfde1;
  animation-delay: 700ms;
}

.loader-art {
  width: min(360px, 78%);
  margin-top: 110px;
  opacity: 1;
}

.loader-panel p {
  margin-top: 18px;
  color: #ff2d2d;
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader-logo {
  width: clamp(110px, 22vw, 154px);
  margin-top: clamp(70px, 10vh, 110px);
  margin-inline: auto;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255, 45, 45, .55);
}

.loader-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 54px;
  color: #ff2d2d;
  font-family: "Courier New", monospace;
}

.loader-copy span {
  color: #ff2d2d;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(255, 45, 45, .75);
}

.loader-copy strong {
  color: #ff2d2d;
  min-width: 155px;
  font-size: clamp(50px, 10vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-align: center;
  text-shadow:
    3px 0 0 rgba(255, 45, 45, .25),
    0 0 22px rgba(255, 45, 45, .85);
}

.loader-bar {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  width: 100%;
  height: 42px;
  margin-top: 24px;
  padding: 7px;
  border: 3px solid #fdfde1;
  border-radius: 999px;
  background: transparent;
  box-shadow:
    inset 0 0 0 3px #ff2d2d,
    0 0 20px rgba(255, 45, 45, .8),
    0 5px 0 rgba(253, 253, 225, .75);
}

.loader-cell {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: rgba(253, 253, 225, .12);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .45);
  transition: background-color 140ms linear;
}

.loader-cell.is-filled {
  background: #ff2d2d;
  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, .22),
    0 0 12px rgba(255, 45, 45, .72);
}

.loader-status {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 74px;
  color: #fdfde1;
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader-status small {
  color: #ff2d2d;
  font-size: 18px;
  letter-spacing: 12px;
  animation: loaderBlink 900ms steps(2, end) infinite;
}

.loader-coin {
  margin-top: 64px;
  padding: 9px 24px;
  border: 1px solid rgba(218, 24, 24, 0.459);
  color: #ff2d2d;
  font-family: "Courier New", monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(255, 45, 45, .18);
}

@keyframes loaderBlink {
  50% {
    opacity: .35;
  }
}

@keyframes loaderTwinkle {
  50% {
    opacity: .25;
  }
}

@media (max-width: 560px) {
  .loader-panel {
    min-height: calc(100vh - 24px);
    padding: 34px 22px;
  }

  .loader-art {
    width: min(300px, 82%);
    margin-top: 92px;
  }

  .loader-logo {
    margin-top: 58px;
  }

  .loader-copy {
    gap: 12px;
    margin-top: 42px;
  }

  .loader-copy strong {
    min-width: 122px;
    font-size: 54px;
  }

  .loader-bar {
    height: 34px;
    gap: 4px;
    padding: 6px;
  }

  .loader-status {
    margin-top: 58px;
    font-size: 14px;
  }

  .loader-coin {
    margin-top: 42px;
    font-size: 13px;
  }
}

.section-dark {
  background: var(--color-black);
  color: var(--color-cream);
}

.section-light {
  background: var(--color-cream);
  color: var(--color-ink);
}

.service-card :where(h3, p),
.project-overlay :where(h3, p),
.work-overlay :where(h3, p),
.testimonial-card :where(h3, p),
.about-points :where(h3, p),
.trust-card :where(h3, p),
.contact-info-grid :where(h3, p, small),
.accordion-item :where(h3, p) {
  text-align: left;
}

.team-card :where(h3, p) {
  text-align: center;
}

.section-light + .section-light {
  position: relative;
}

.section-light + .section-light::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), calc(100% - 40px));
  height: 1px;
  background: #e6e6e6;
  content: "";
  transform: translateX(-50%);
}

.standout + .section-light::before {
  content: none;
}

.page-hero {
  min-height: 420px;
  padding: 150px 0 88px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  color: var(--color-soft);
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.blog-page .page-hero h1,
.blog-detail-page .page-hero h1 {
  font-size: 56px;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 46px;
  color: var(--color-soft);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb span,
.breadcrumb strong {
  color: var(--color-red);
}

.about-story {
  padding: 80px 0 46px;
}

.about-story-inner {
  display: grid;
  gap: 68px;
}

.about-intro {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.about-intro h2,
.about-choose h2 {
  margin: 0;
  font-size: clamp(46px, 5.6vw, 84px);
  font-weight: 700;
  line-height: 1.07em;
  letter-spacing: -.7px;
}

.about-intro h2 span,
.about-choose h2 span {
  color: var(--color-red);
}

.about-intro p {
  max-width: none;
  margin: 28px auto 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.about-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-media-small img {
  min-height: 360px;
}

.about-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 23, 23, .8);
  color: var(--color-soft);
  font-size: 12px;
  font-weight: 700;
}

.about-values {
  padding: 54px 0 90px;
}

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

.about-values h2 {
  margin: 0 0 26px;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.7px;
}

.about-values p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.about-values p + p {
  margin-top: 34px;
}

.about-choose {
  padding: 90px 0 110px;
}

.about-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.about-points {
  display: grid;
  gap: 18px;
}

.about-points article {
  padding: 28px 30px;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-cream);
  box-shadow: 0 8px 0 var(--color-line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.about-points article:hover {
  transform: translateY(6px);
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 2px 0 var(--color-line);
}

.about-points strong {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-line);
  border-radius: 12px;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.about-points article:hover strong {
  border-color: var(--color-line);
  background: #fdfde1;
  color: var(--color-ink);
}

.about-points article:hover h3,
.about-points article:hover p {
  color: #fdfde1;
}

.about-points h3 {
  margin: 24px 0 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.05;
}

.about-points p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.contact-main {
  padding: 100px 0 96px;
}

.contact-main h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.07em;
  letter-spacing: -.7px;
}

.contact-main h2 span,
.contact-info h2 span {
  color: var(--color-red);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 70px;
}

.contact-page-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-cream);
}

.contact-page-form input[name="company_website"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-page-form label {
  display: grid;
  gap: 10px;
}

.contact-page-form label span {
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, .72);
  border-radius: 999px;
  background: transparent;
  padding: 17px 20px;
  color: var(--color-ink);
  outline: 0;
  font-size: 16px;
  font-weight: 400;
}

.contact-page-form textarea {
  min-height: 184px;
  border-radius: 18px;
  resize: vertical;
}

.contact-page-button {
  justify-self: start;
  min-height: 58px;
  min-width: 160px;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-ink);
  padding: 0 30px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 7px 0 var(--color-line);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.contact-page-button:hover {
  transform: translateY(4px);
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 3px 0 var(--color-line);
}

.contact-page-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
}

.contact-page-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.contact-page-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 23, 23, .8);
  color: var(--color-soft);
  font-size: 12px;
  font-weight: 700;
}

.contact-info {
  padding: 92px 0 110px;
}

.contact-info h2 {
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--container);
  margin: 52px auto 0;
}

.contact-info-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 132px;
  padding: 28px 26px;
  border-radius: 7px;
  background: var(--color-black);
  color: var(--color-soft);
}

.contact-info-grid article div {
  min-width: 0;
}

.contact-info-grid article > span {
  color: var(--color-soft);
  font-size: 28px;
  line-height: 1;
}

.contact-info-grid h3 {
  margin: 0 0 8px;
  color: var(--color-soft);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.contact-info-grid a,
.contact-info-grid p,
.contact-info-grid small {
  display: block;
  margin: 0;
  color: var(--color-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-info-grid small {
  opacity: .72;
}

.contact-map-placeholder {
  display: grid;
  place-items: center;
  min-height: 430px;
  max-width: var(--container);
  margin: 72px auto 0;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(251, 250, 241, .86), rgba(251, 250, 241, .86)),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(23, 23, 23, .15) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(23, 23, 23, .15) 39px);
  text-align: center;
}

.contact-map-placeholder span {
  color: var(--color-red);
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1;
}

.contact-map-placeholder p {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 400;
}

.contact-map-embed {
  width: 100%;
  max-width: var(--container);
  min-height: 430px;
  margin: 72px auto 0;
  border: 3px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-black);
  overflow: hidden;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.hero {
  min-height: 760px;
  padding: 150px 0 150px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(640px, 1fr) minmax(420px, 500px);
  align-items: center;
  gap: 62px;
}

.narrow-heading h2,
.center-heading h2,
.standout-heading h2,
.process h2 {
  margin: 0;
  letter-spacing: -.7px;
  line-height: 1.07em;
  font-weight: 700;
  overflow-wrap: break-word;
}

.hero h1 {
  margin: 0;
  color: #FDFDE1;
  font-family: "Syne", var(--font-main);
  letter-spacing: -1px;
  line-height: 1em;
  font-weight: 700;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: none;
  font-size: clamp(48px, 4.25vw, 104px);
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 span,
h2 span {
  color: var(--color-red);
}

.hero-copy p {
  max-width: none;
  margin: 30px 0 0;
  color: rgba(251, 250, 241, .9);
  font-size: 18px;
  font-weight: 400;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.hero-proof span {
  display: inline-flex;
  border: 1px solid rgba(251, 250, 241, .35);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  color: var(--color-cream);
  font-size: 13px;
  font-weight: 400;
}

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

.text-link {
  color: var(--color-cream);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  border: 4px solid var(--color-cream);
  border-radius: 20px;
  overflow: hidden;
  background: #141414;
  transform: translateY(20px);
}

.hero-visual img,
.wide-media img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  aspect-ratio: 4 / 3;
}

.hero-arrow {
  position: absolute;
  left: 30%;
  bottom: -100px;
  z-index: 1;
  width: 220px;
  color: var(--color-red);
  pointer-events: none;
}

.hero-arrow svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.hero-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, .72);
  padding: 8px 12px;
  color: #fdfde1;
  font-size: 12px;
  font-weight: 400;
}

.services {
  padding: 108px 0 118px;
}

.narrow-heading {
  text-align: center;
}

.center-heading {
  text-align: center;
}

.narrow-heading h2,
.center-heading h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(38px, 3vw, 66px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 270px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 34px 34px 72px;
  background: var(--color-cream);
  color: var(--color-ink);
  box-shadow: 0 10px 0 var(--color-line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.service-card:hover {
  transform: translateY(7px);
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 3px 0 var(--color-line);
}

.service-card:hover p,
.service-card:hover strong,
.service-card:hover .card-arrow {
  color: #fdfde1;
}

.service-card:hover .line-icon {
  filter: brightness(0) invert(1);
}

.service-card.is-accent {
  background: var(--color-red-soft);
}

.line-icon {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.service-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.1;
}

.service-card p {
  max-width: 510px;
  margin: 0;
  color: #282828;
  font-size: 16px;
  font-weight: 400;
}

.service-card strong {
  font-weight: 900;
  transition: color 180ms ease;
}

.card-arrow {
  position: absolute;
  left: 34px;
  bottom: 25px;
  font-size: 38px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover .card-arrow {
  transform: translateX(4px);
}

.standout {
  padding: 112px 0 120px;
}

.service-detail {
  padding: 96px 0 68px;
}

.service-detail-media {
  position: relative;
  margin: 0;
    display:flex;
  justify-content:center;
}

.service-detail-media img {
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border: 5px solid var(--color-line);
  border-radius: 32px;
  object-fit: cover;
}

.service-detail-media figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  padding: 8px 12px;
  color: #fdfde1;
  font-size: 12px;
  font-weight: 400;

}

.service-detail-copy {
  max-width: 860px;
  margin-top: 82px;
  margin-inline: auto;
  text-align: center;
}

.service-detail-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -1px;
}

.service-detail-copy h2 span,
.service-packages h2 span {
  color: var(--color-red);
}

.service-detail-copy p {
  max-width: 820px;
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.website-features {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  isolation: isolate;
}

.website-features::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/images/corporatewebsite1.png") center / cover no-repeat;
  opacity: .32;
  content: "";
}

.website-features::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 3, 3, .88), rgba(3, 3, 3, .78));
  content: "";
}

.website-features-heading {
  max-width: 880px;
  margin-inline: auto;
  color: var(--color-soft);
}

.website-features-heading h2 {
  margin: 0;
  color: var(--color-soft);
  font-size: var(--section-h2-size);
  line-height: 1.02;
}

.website-features-heading h2 span {
  color: var(--color-red);
}

.website-features-heading p {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--color-soft);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.website-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 62px;
}

.website-feature-card {
  min-height: 250px;
  border: 2px solid var(--color-line);
  border-radius: 12px;
  padding: 30px 24px 28px;
  background: var(--color-soft);
  color: var(--color-ink);
  text-align: center;
  box-shadow: 6px 6px 0 var(--color-red);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.website-feature-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--color-red);
}

.feature-badge {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 2px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-red);
  color: var(--color-soft);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.website-feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.website-feature-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.domain-search {
  padding: 94px 0 106px;
}

.domain-search-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
  gap: 72px;
  align-items: center;
}

.domain-search-copy h2 {
  margin: 0;
  font-size: var(--section-h2-size);
  line-height: 1.07;
  letter-spacing: -.7px;
}

.domain-search-copy h2 span {
  color: var(--color-red);
}

.domain-search-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.domain-search-form {
  position: relative;
  border: 2px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-cream);
  padding: 34px;
  box-shadow: 7px 7px 0 var(--color-line);
}

.domain-search-form label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.domain-search-control {
  display: grid;
  grid-template-columns: 1fr 150px 150px;
  gap: 14px;
}

.domain-search-control input,
.domain-suffix-trigger {
  width: 100%;
  min-height: 58px;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  background: transparent;
  padding: 0 22px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 400;
  outline: none;
}

.domain-suffix-dropdown {
  position: relative;
  z-index: 8;
}

.domain-suffix-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-main);
}

.domain-suffix-arrow {
  font-family: var(--font-title);
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms ease;
}

.domain-suffix-dropdown.is-open .domain-suffix-arrow {
  transform: rotate(180deg);
}

.domain-suffix-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  max-height: 300px;
  overflow-y: auto;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  background: #fbfaf1;
  padding: 8px 0;
  box-shadow: 0 5px 0 var(--color-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.domain-suffix-dropdown.is-open .domain-suffix-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.domain-suffix-menu button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 9px 20px;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.domain-suffix-menu button:hover,
.domain-suffix-menu button:focus {
  background: rgba(255, 45, 45, 0.08);
  color: #ff2d2d;
  outline: none;
}

.domain-suffix-menu button.is-selected {
  background: rgba(255, 45, 45, 0.1);
  color: #ff2d2d;
  font-weight: 700;
}

.domain-search-control input:focus,
.domain-suffix-trigger:focus {
  border-color: #ff2d2d;
}

.domain-search-control > button {
  min-height: 58px;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  background: #fbfaf1;
  color: #171717;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--color-line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.domain-search-control > button:hover,
.domain-search-control > button:focus {
  background: #e52727;
  color: #fdfde1;
}

.domain-search-control > button:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--color-line);
}

.domain-search-control > button:disabled {
  cursor: wait;
  opacity: .72;
}

.domain-search-help {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 400;
}

.domain-turnstile {
  height: 0;
  overflow: hidden;
}

.domain-search-result {
  display: none;
  margin-top: 24px;
  border: 2px solid var(--color-line);
  border-radius: 16px;
  padding: 22px;
  background: #fffdf3;
}

.domain-search-result.is-visible {
  display: block;
}

.domain-search-result strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.1;
}

.domain-search-result p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.domain-search-result.is-available strong {
  color: #128a3a;
}

.domain-search-result.is-registered strong {
  color: #ff2d2d;
}

.domain-search-result.is-unknown strong {
  color: var(--color-ink);
}

.service-packages {
  padding: 78px 0 122px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  margin-top: 64px;
}

.package-grid-single {
  grid-template-columns: repeat(auto-fit, minmax(280px, 640px));
  justify-content: center;
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 660px;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  padding: 34px 30px 30px;
  background: var(--color-cream);
  color: var(--color-ink);
  box-shadow: 8px 8px 0 var(--color-line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-card:hover {
  transform: translate(5px, 5px);
  box-shadow: 3px 3px 0 var(--color-line);
}

.package-card h3 {
  min-height: 68px;
  margin: 0 0 28px;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.1;
}

.package-card strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.package-card p {
  min-height: 98px;
  margin: 28px 0 26px;
  font-size: 18px;
  font-weight: 400;
}

.package-card ul {
  display: grid;
  align-content: start;
  gap: 20px;
  flex: 1;
  margin: 0 0 32px;
  border-top: 1px solid #dedbd0;
  padding: 28px 0 0;
  list-style: none;
}

.package-feature-groups {
  display: grid;
  gap: 26px;
  flex: 1;
  margin: 0 0 32px;
  border-top: 1px solid #dedbd0;
  padding-top: 28px;
}

.package-feature-group h4 {
  margin: 0 0 16px;
  color: var(--color-ink);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.package-feature-group ul {
  gap: 14px;
  margin: 0;
  border-top: 0;
  padding: 0;
}

.package-card li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.package-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff2d2d;
  color: #fdfde1;
  font-size: 14px;
  font-weight: 900;
  content: "\2713";
}

.package-button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  padding: 16px 22px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  transition: none;
}

.package-card.is-featured .package-button {
  background: #ff2d2d;
  color: #fdfde1;
}

.service-faq {
  padding: 112px 0 126px;
}

.service-faq-grid {
  display: grid;
  gap: 58px;
  align-items: start;
}

.service-faq-copy {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.service-faq-copy h2 {
  margin: 0;
  font-size: var(--section-h2-size);
  line-height: 1.07;
  letter-spacing: -.7px;
}

.service-faq-copy h2 span {
  color: var(--color-red);
}

.service-faq-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.faq-button {
  width: 210px;
  margin-top: 34px;
  background: var(--color-cream);
  color: var(--color-ink);
}

.faq-button .button-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  line-height: 1;
}

.faq-button .button-icon svg {
  width: 24px;
  height: 24px;
}

.faq-button .button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-button:hover {
  color: #fdfde1;
}

.faq-button:hover .button-icon {
  color: #fdfde1;
}

.service-faq-list {
  display: grid;
  gap: 18px;
  width: min(900px, 100%);
  margin-inline: auto;
}

.service-faq-list .accordion-item h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
}

.service-faq-list .accordion-item p {
  background: #fbfaf1;
  font-size: 18px;
  line-height: 1.55;
}

.standout-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  align-items: start;
  gap: 72px;
}

.standout-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.standout-heading p {
  margin: 8px 0 0;
  font-size: 19px;
  font-weight: 400;
}

.standout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 385px;
  column-gap: 44px;
  align-items: stretch;
  margin-top: 70px;
}

.wide-media {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 4px solid var(--color-line);
  border-radius: 22px;
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-red);
  padding: 16px 30px;
  color: #fdfde1;
  font-weight: 900;
  box-shadow: 0 4px 0 var(--color-line);
}

.trust-panel {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-black);
  color: #fdfde1;
  box-shadow: 0 4px 0 #ff2d2d;
}

.trust-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 0;
  border-bottom: 1px solid rgba(253, 253, 225, .18);
  border-radius: 0;
  background: transparent;
  padding: 30px 28px;
  box-shadow: none;
  text-align: center;
}

.trust-card:last-child {
  border-bottom: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 45, 45, .62);
  border-radius: 12px;
  color: #ff2d2d;
}

.trust-icon svg {
  width: 25px;
  height: 25px;
}

.trust-icon path,
.trust-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card strong {
  color: #ff2d2d;
  font-family: var(--font-title);
  font-size: clamp(54px, 4.8vw, 78px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -2px;
  margin-top: 0;
  font-variant-numeric: tabular-nums;
}

.trust-card strong[data-counter] {
  display: inline-flex;
  align-items: baseline;
}

.counter-value {
  display: inline-flex;
  line-height: 1;
}

.counter-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
}

.counter-strip {
  display: grid;
  transform: translateY(0);
  transition: transform 1700ms cubic-bezier(.18, .82, .24, 1);
  transition-delay: var(--counter-delay);
  will-change: transform;
}

.counter-strip span {
  display: block;
  height: 1em;
  line-height: 1em;
}

.counter-suffix {
  display: inline-block;
  line-height: 1;
}

.trust-card strong.is-rolling .counter-strip {
  transform: translateY(calc(var(--counter-target) * -1em));
}

.trust-card strong::after {
  content: none;
}

.trust-line {
  display: none;
}

.trust-card > span:not(.trust-icon, .trust-line) {
  color: #fdfde1;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.trust-card p {
  max-width: 260px;
  margin: 6px 0 0;
  color: rgba(253, 253, 225, .78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.portfolio {
  position: relative;
  min-height: 180vh;
  overflow: visible;
  padding: 0;
}

.portfolio-sticky {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 98px 0 86px;
}

.portfolio .center-heading {
  margin-bottom: 70px;
}

.portfolio .center-heading h2 {
  max-width: none;
  color: #fdfde1;
  font-size: clamp(42px, 4.2vw, 66px);
}

.portfolio-window {
  width: 100%;
  overflow: hidden;
}

.portfolio-track {
  display: grid;
  grid-auto-columns: 28vw;
  grid-auto-flow: column;
  gap: 22px;
  width: max-content;
  margin-left: 8px;
  padding-right: 32px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.project-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 4px solid var(--color-cream);
  border-radius: 12px;
  background: #171717;
  isolation: isolate;
}

.project-gradient {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 62%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, .42) 42%,
    rgba(0, 0, 0, .84) 100%
  );
}

.project-overlay {
  position: absolute;
  z-index: 3;
  inset: auto 24px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  color: #fdfde1;
}

.project-overlay h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.05;
}

.project-overlay p {
  margin: 0;
  color: rgba(253, 253, 225, .84);
  font-size: 16px;
  font-weight: 400;
}

.project-overlay span {
  align-self: end;
  font-size: 38px;
}

.slider-rule {
  height: 3px;
  max-width: 980px;
  margin-top: 66px;
  overflow: hidden;
  background: #34342f;
}

.slider-rule span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--color-red);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.process {
  display: flex;
  align-items: center;
  padding: 110px 0 120px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(500px, 30%);
  justify-content: space-between;
  gap: 0;
  align-items: center;
}

.process h2 {
  font-size: clamp(38px, 4.2vw, 64px);
}

.process-copy p {
  max-width: 80%;
  margin: 28px 0 0;
  font-size: 18px;
  font-weight: 400;
}

.accordion {
  display: grid;
  gap: 18px;
}

.accordion-item {
  display: grid;
  grid-template-rows: auto 0fr;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  overflow: hidden;
  transition: grid-template-rows 320ms ease, box-shadow 220ms ease;
}

.accordion-item.is-open {
  background: var(--color-cream);
  color: var(--color-ink);
  box-shadow: none;
  grid-template-rows: auto 1fr;
}

.accordion-item.is-open h3 {
  color: var(--color-ink);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 28px;
  cursor: pointer;
  text-align: left;
  font-weight: 400;
  line-height: 1.18;
}

.accordion-item h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-title);
  font-size: clamp(17px, 1.25vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.accordion-item button span:last-child {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 400;
}

.accordion-item p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-top: 1px solid transparent;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 400;
  transition: padding-top 320ms ease, padding-bottom 320ms ease, border-color 220ms ease, opacity 220ms ease;
  opacity: 0;
}

.accordion-item.is-open p {
  border-color: #dedbd0;
  padding-top: 22px;
  padding-bottom: 26px;
  opacity: 1;
}

.our-work {
  padding: 112px 0 122px;
}

.our-work .center-heading {
  margin-bottom: 72px;
}

.our-work .center-heading h2 {
  max-width: none;
}

.work-page-section .center-heading {
  margin-bottom: 44px;
}

.work-tabs {
  margin-top: 0;
}

.work-tab-control {
  position: relative;
  margin-bottom: 54px;
  padding-inline: 78px;
}

.work-tab-list {
  display: grid;
  gap: 24px;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 12px 6px;
  scroll-padding-inline: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.work-tab-list::-webkit-scrollbar {
  height: 0;
}

.work-tab-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-ink);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 5px 0 var(--color-line);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.work-tab-arrow-prev {
  left: 0;
}

.work-tab-arrow-next {
  right: 0;
}

.work-tab-arrow:hover:not(:disabled) {
  transform: translateY(calc(-50% + 3px));
  box-shadow: 0 2px 0 var(--color-line);
}

.work-tab-arrow:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.work-tab-row {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  width: max-content;
}

.work-tab-row:nth-child(2) {
  transform: none;
  margin-left: 130px;
}

.work-tab {
  min-width: 220px;
  border: 2px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-cream);
  padding: 15px 25px;
  color: var(--color-ink);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 5px 0 var(--color-line);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.work-tab:hover,
.work-tab.is-active {
  transform: translateY(3px);
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 2px 0 var(--color-line);
}

.work-tab-panel {
  display: none;
}

.work-tab-panel.is-active {
  display: block;
}

.work-empty {
  max-width: 620px;
  margin: 40px auto 0;
  border: 2px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-cream);
  padding: 24px;
  text-align: center;
  font-weight: 400;
}

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

.work-card {
  --work-card-height: 600px;
  --work-scroll-duration: 3000ms;
  position: relative;
  height: var(--work-card-height);
  overflow: hidden;
  border: 4px solid var(--color-line);
  border-radius: 18px;
  background: #171717;
}

.work-card img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--work-scroll-duration) linear;
}

.home-work-card {
  --work-scroll-duration: 3s;
}

.work-card:hover img,
.work-card.is-previewing img {
  transform: translateY(calc(-100% + var(--work-card-height)));
}

.work-zoom-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  background: #fbfaf1;
  color: var(--color-ink);
  cursor: pointer;
  box-shadow: 0 5px 0 var(--color-line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.work-zoom-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-zoom-button:hover {
  transform: translateY(3px);
  background: #e52727;
  color: #fdfde1;
  box-shadow: 0 2px 0 var(--color-line);
}

.work-hint {
  position: absolute;
  right: 76px;
  bottom: 23px;
  z-index: 2;
  display: none;
  border: 1px solid rgba(253, 253, 225, .55);
  border-radius: 999px;
  background: rgba(0, 0, 0, .54);
  padding: 7px 11px;
  color: #fdfde1;
  font-size: 12px;
  font-weight: 400;
  pointer-events: none;
}

.work-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .42) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.work-card:hover .work-overlay,
.work-card.is-previewing .work-overlay {
  opacity: 1;
}

.work-card.is-previewing .work-hint {
  opacity: 0;
}

.work-more {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.work-more .pill-button {
  width: 260px;
  min-height: 56px;
  padding-left: 28px;
  background: #fbfaf1;
  color: var(--color-ink);
  box-shadow: 0 var(--button-layer-depth) 0 -1px var(--color-line);
}

.work-more .pill-button:hover {
  background: #e52727;
  color: #fbfaf1;
}

.work-more .button-icon {
  display: inline;
  width: auto;
  height: auto;
  margin-right: 8px;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 22px;
  line-height: 1;
}

.work-overlay h3 {
  margin: 0;
  max-width: calc(100% - 64px);
  color: #fdfde1;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.2px;
}

.work-preview-open {
  overflow: hidden;
}

.work-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.work-preview-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.work-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, .86);
}

.work-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  border: 3px solid var(--color-line);
  border-radius: 24px;
  background: #fbfaf1;
  padding: 28px;
  transform: translateY(16px) scale(.98);
  transition: transform 240ms cubic-bezier(.16, 1, .3, 1);
}

.work-preview-modal.is-open .work-preview-dialog {
  transform: translateY(0) scale(1);
}

.work-preview-dialog h2 {
  max-width: calc(100% - 70px);
  margin: 0 0 20px;
  color: var(--color-ink);
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1;
}

.work-preview-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-line);
  border-radius: 14px;
  background: #fbfaf1;
  cursor: pointer;
}

.work-preview-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-line);
}

.work-preview-close span:first-child {
  transform: rotate(45deg);
}

.work-preview-close span:last-child {
  transform: rotate(-45deg);
}

.work-browser-frame {
  border: 3px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  background: #030303;
}

.work-browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 46px;
  border-bottom: 2px solid var(--color-line);
  background: #101010;
  padding: 0 16px;
}

.work-browser-lights {
  display: flex;
  gap: 8px;
}

.work-browser-lights span {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(251, 250, 241, .5);
  border-radius: 50%;
}

.work-browser-lights span:nth-child(1) {
  background: #e52727;
}

.work-browser-lights span:nth-child(2) {
  background: #f3c33b;
}

.work-browser-lights span:nth-child(3) {
  background: #65d46e;
}

.work-browser-address {
  display: block;
  min-width: 0;
  border: 1px solid rgba(251, 250, 241, .18);
  border-radius: 999px;
  background: rgba(251, 250, 241, .07);
  padding: 6px 14px;
  color: rgba(253, 253, 225, .72);
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-browser-power {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #e52727;
  border-radius: 50%;
}

.work-browser-power::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 2px;
  height: 12px;
  border-radius: 999px;
  background: #e52727;
  transform: translateX(-50%);
}

.work-preview-scroll {
  max-height: 50vh;
  overflow-y: auto;
  background: #fdfde1;
}

.work-preview-scroll img {
  display: block;
  width: 100%;
  height: auto;
}

@media (hover: none) {
  .work-hint {
    display: inline-flex;
  }
}

.testimonials {
  padding: 112px 0 122px;
}

.testimonials .center-heading {
  margin-bottom: 68px;
}

.testimonials .center-heading h2,
.team .center-heading h2 {
  max-width: none;
  font-size: clamp(38px, 3.8vw, 62px);
}

.testimonial-slider {
  max-width: 1040px;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  --testimonial-gap: 28px;
  display: flex;
  gap: var(--testimonial-gap);
  transform: translate3d(0, 0, 0);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - var(--testimonial-gap)) / 2);
  display: grid;
  min-height: 310px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--color-cream);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-ink);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 4px 0 var(--color-line);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.testimonial-arrow:hover {
  background: var(--color-cream);
  color: var(--color-ink);
}

.testimonial-arrow:active {
  transform: translateY(3px);
  background: #ff2d2d;
  color: #fdfde1;
  box-shadow: 0 1px 0 var(--color-line);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: width 220ms ease, border-radius 220ms ease, background 220ms ease, transform 180ms ease;
}

.testimonial-dot.is-active {
  width: 32px;
  height: 12px;
  border-radius: 999px;
  background: #ff2d2d;
}

.testimonial-dot:hover {
  transform: translateY(-1px);
}

.rating {
  color: #3a3a3a;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
}

.testimonial-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.1;
}

.testimonial-card p {
  max-width: 460px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.testimonial-card img {
  align-self: end;
  width: 52px;
  height: 52px;
  margin-top: 24px;
  border: 2px solid var(--color-line);
  border-radius: 50%;
  object-fit: cover;
}

.marquee-strip {
  overflow: hidden;
  background: #e52727;
  color: #fbfaf1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 18s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 14px 18px;
  font-family: var(--font-title);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.team {
  padding: 118px 0 124px;
}

.team .center-heading {
  margin-bottom: 68px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  justify-content: center;
  gap: 24px;
  max-width: 1320px;
}

.team-card {
  text-align: center !important;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 4px solid var(--color-line);
  border-radius: 12px;
  object-fit: cover;
}

.team-card h3 {
  margin: 22px 0 6px;
  font-size: clamp(21px, 1.6vw, 28px);
  line-height: 1.1;
}

.team-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.contact-section {
  padding: 118px 0 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .7fr);
  gap: 96px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  color: #fdfde1;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -.7px;
}

.contact-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(253, 253, 225, .9);
  font-size: 18px;
  font-weight: 400;
}

.contact-details {
  display: grid;
  gap: 4px;
  margin-top: 42px;
  color: #fdfde1;
  font-size: 17px;
}

.contact-details strong {
  margin-top: 14px;
  color: var(--color-red);
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.1;
}

.contact-details a,
.contact-details span {
  font-weight: 400;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.contact-socials span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(253, 253, 225, .55);
  border-radius: 50px;
  padding: 0 14px;
  color: #fdfde1;
  font-size: 12px;
  font-weight: 400;
}

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

.contact-form h3 {
  margin: 0 0 4px;
  color: #fdfde1;
  font-size: 24px;
  line-height: 1.1;
}

.contact-form label {
  display: grid;
}

.contact-form label span,
.contact-form input[name="company_website"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(253, 253, 225, .45);
  border-radius: 100px;
  background: transparent;
  padding: 18px 22px;
  color: #fdfde1;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
}

.contact-form textarea {
  min-height: 124px;
  border-radius: 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(253, 253, 225, .74);
}

.form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 2px solid var(--color-line);
  border-radius: 100px;
  background: #ff2d2d;
  color: #fdfde1;
  padding: 0 10px 0 34px;
  cursor: pointer;
  font-weight: 400;
  box-shadow: 0 7px 0 -1px #fbfaf1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-button:hover {
  transform: translateY(4px);
  background: #e52727;
  box-shadow: 0 3px 0 -1px #fbfaf1;
}

.form-button span:last-child {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-black);
  color: #fdfde1;
  font-size: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 106px;
  border-top: 1px solid rgba(253, 253, 225, .18);
  padding-top: 28px;
}

.site-footer img {
  width: 48px;
  border-radius: 5px;
}

.site-footer p {
  margin: 0;
  color: rgba(253, 253, 225, .65);
  font-size: 14px;
  font-weight: 400;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuScanLine {
  0% {
    transform: translateX(-100%);
  }

  55% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.blog-list-section {
  padding: 80px 0 112px;
}

.blog-list-section h2,
.blog-detail-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.7px;
}

.blog-list-section h2 span,
.blog-detail-copy h2 span {
  color: var(--color-red);
}

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

.blog-card {
  position: relative;
  border: 2px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-cream);
  overflow: hidden;
}

.blog-card::after {
  position: absolute;
  inset: auto 0 -7px;
  z-index: -1;
  height: 100%;
  border: 2px solid var(--color-line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: var(--color-line);
  content: "";
}

.blog-card a {
  display: grid;
  min-height: 100%;
}

.blog-card-media {
  height: 250px;
  margin: 0;
  border-bottom: 2px solid var(--color-line);
  background: var(--color-soft);
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.blog-card-copy time,
.blog-detail-copy time {
  color: var(--color-red);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card-copy h2 {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 32px;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-copy p,
.blog-detail-copy p,
.blog-content {
  margin: 0;
  font-weight: 400;
}

.blog-card-copy span {
  margin-top: 8px;
  font-family: var(--font-title);
  font-weight: 700;
}

.blog-empty {
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-cream);
  padding: 26px;
  text-align: center;
  font-weight: 400;
}

.blog-detail-section {
  padding: 96px 0 112px;
}

.blog-detail-article {
  width: min(900px, calc(100% - 40px));
  display: grid;
  gap: 70px;
}

.blog-detail-media {
  height: clamp(320px, 46vw, 620px);
  margin: 0;
  border: 4px solid var(--color-line);
  border-radius: 28px;
  background: var(--color-soft);
  overflow: hidden;
}

.blog-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-copy {
  max-width: 900px;
}

.blog-detail-copy time {
  display: inline-block;
  margin-bottom: 18px;
}

.blog-detail-copy h2 {
  max-width: 900px;
  margin-bottom: 26px;
}

.blog-detail-excerpt {
  max-width: 780px;
  margin-bottom: 30px !important;
  font-size: 22px;
}

.blog-content {
  display: grid;
  gap: 18px;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.65;
}

.blog-content :where(p, h2, h3, ul, ol, figure, blockquote) {
  margin: 0;
}

.blog-content h2,
.blog-content h3 {
  color: var(--color-ink);
  line-height: 1.08;
}

.blog-content h2 {
  font-size: 32px;
}

.blog-content h3 {
  font-size: clamp(24px, 2vw, 34px);
}

.blog-content ul,
.blog-content ol {
  padding-left: 28px;
}

.blog-content figure {
  display: grid;
  gap: 10px;
}

.blog-content img {
  width: 100%;
  height: auto;
  border: 3px solid var(--color-line);
  border-radius: 22px;
}

.blog-content figcaption {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 400;
}

.blog-content blockquote {
  border-left: 4px solid var(--color-red);
  padding-left: 20px;
  font-family: var(--font-title);
  font-weight: 700;
}

.blog-content a {
  color: var(--color-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.simple-site-footer {
  padding: 38px 0;
}

.simple-site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.simple-site-footer img {
  width: 55px;
  border-radius: 5px;
}

.simple-site-footer p {
  margin: 0;
  color: rgba(251, 250, 241, 0.72);
  font-weight: 400;
}

.simple-site-footer a {
  color: var(--color-cream);
  font-family: var(--font-title);
  font-weight: 700;
}

.simple-site-footer a:hover {
  color: var(--color-red);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 178px;
  height: 58px;
  padding: 0 12px 0 18px;
  border: 2px solid var(--color-black);
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 6px 0 var(--color-line);
  color: #fdfde1;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(4px);
  background: #e52727;
  box-shadow: 0 2px 0 var(--color-line);
}

.floating-whatsapp span {
  margin-right: auto;
  color: inherit;
  white-space: nowrap;
}

.floating-whatsapp img {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  background: #030303;
  filter: none;
}

.narrow-heading h2,
.center-heading h2,
.standout-heading h2,
.process h2,
.about-intro h2,
.about-choose h2,
.contact-main h2,
.contact-info h2,
.service-detail-copy h2,
.service-packages h2,
.blog-detail-copy h2,
.contact-copy h2 {
  font-size: var(--section-h2-size);
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: absolute;
    z-index: 30;
  }

  .nav-toggle {
    position: relative;
    z-index: 32;
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    flex-direction: column;
    align-content: start;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    padding: 88px 28px 40px;
    overflow-y: auto;
  }

  .site-header.is-open .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(253, 253, 225, .12);
    padding: 20px 0 19px;
    color: #fdfde1;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    animation: navItemIn 360ms ease both;
  }

  .site-header.is-open .main-nav a:nth-child(2) {
    animation-delay: 40ms;
  }

  .site-header.is-open .main-nav a:nth-child(3) {
    animation-delay: 80ms;
  }

  .site-header.is-open .main-nav a:nth-child(4) {
    animation-delay: 120ms;
  }

  .site-header.is-open .main-nav a:nth-child(5) {
    animation-delay: 160ms;
  }

  .site-header.is-open .main-nav a:nth-child(1)::after,
  .site-header.is-open .main-nav a:nth-child(3)::after {
    color: #fdfde1;
    content: "⌄";
    font-size: 24px;
    line-height: 1;
  }

  .site-header.is-open .brand {
    position: relative;
    top: auto;
    left: auto;
    z-index: 32;
  }

  .site-header.is-open .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
  }

  .site-header.is-open .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    width: 24px;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    background: var(--color-black);
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 280ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 180ms;
  }

  .mobile-menu-panel::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 3px;
    background: #ff2d2d;
    content: "";
    transform: translateX(-100%);
  }

  .mobile-menu-panel.is-open::before {
    animation: menuScanLine 720ms cubic-bezier(.16, 1, .3, 1) forwards;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 360ms ease 120ms, transform 360ms ease 120ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-head {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-brand {
    display: inline-flex;
    width: 55px;
  }

  .mobile-menu-brand img {
    width: 100%;
    border-radius: 5px;
  }

  .mobile-menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-cream);
    border-radius: 10px;
    background: var(--color-black);
    color: #fdfde1;
    cursor: pointer;
    box-shadow: 0 5px 0 rgba(253, 253, 225, .22);
    transition: transform 220ms cubic-bezier(.16, 1, .3, 1), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  }

  .mobile-menu-close::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(253, 253, 225, .18);
    border-radius: 6px;
    content: "";
    transform: scale(1) rotate(45deg);
    transition: transform 260ms cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    border-color: #ff2d2d;
    background: #ff2d2d;
  }

  .mobile-menu-close:active {
    transform: translateY(4px) rotate(-3deg) scale(.96);
    box-shadow: 0 1px 0 rgba(253, 253, 225, .22);
  }

  .mobile-menu-close:active::before {
    transform: scale(.78) rotate(135deg);
  }

  .mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 220ms cubic-bezier(.16, 1, .3, 1), width 220ms ease;
  }

  .mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu-close:active span:first-child {
    width: 22px;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .mobile-menu-close:active span:last-child {
    width: 22px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    margin-top: 38px;
  }

  .mobile-menu-nav > a,
  .mobile-menu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(253, 253, 225, .12);
    padding: 20px 0 19px;
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: #fdfde1;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
  }

  .mobile-menu-nav > a,
  .mobile-menu-group {
    opacity: 0;
    transform: translateY(18px);
  }

  .mobile-menu-parent {
    cursor: pointer;
  }

  .mobile-menu-parent span {
    transition: transform 220ms ease;
  }

  .mobile-menu-group.is-open .mobile-menu-parent span {
    transform: rotate(180deg);
  }

  .mobile-sub-menu {
    display: grid;
    grid-template-rows: 0fr;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 253, 225, .12);
    padding: 0;
    opacity: 0;
    transition: grid-template-rows 320ms cubic-bezier(.16, 1, .3, 1), opacity 220ms ease, padding 320ms cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-menu-group.is-open .mobile-sub-menu {
    grid-template-rows: 1fr;
    padding: 8px 0 14px;
    opacity: 1;
  }

  .mobile-sub-menu-inner {
    overflow: hidden;
    min-height: 0;
  }

  .mobile-menu-nav .mobile-sub-link {
    display: flex;
    width: 100%;
    padding: 10px 0 10px 22px;
    color: rgba(253, 253, 225, .74);
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 220ms ease 70ms, transform 260ms cubic-bezier(.16, 1, .3, 1) 70ms, color 180ms ease;
  }

  .mobile-menu-group.is-open .mobile-sub-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > a,
  .mobile-menu-panel.is-open .mobile-menu-nav > .mobile-menu-group {
    animation: navItemIn 520ms cubic-bezier(.16, 1, .3, 1) both;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(2) {
    animation-delay: 70ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(3) {
    animation-delay: 140ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(4) {
    animation-delay: 210ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(5) {
    animation-delay: 280ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(6) {
    animation-delay: 350ms;
  }

  .mobile-menu-panel.is-open .mobile-menu-nav > :nth-child(7) {
    animation-delay: 420ms;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .standout-heading,
  .standout-grid,
  .process-grid,
  .about-media-grid,
  .about-values-grid,
  .about-choose-grid,
  .contact-main-grid,
  .contact-grid,
  .domain-search-grid,
  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .standout-heading,
  .process-grid,
  .about-choose-grid,
  .contact-grid,
  .domain-search-grid,
  .service-faq-grid {
    gap: 42px;
  }

  .hero-visual {
    max-width: 560px;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .standout-grid {
    gap: 24px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
  }

  .work-grid,
  .team-grid,
  .website-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    max-width: 620px;
  }

  .contact-page-media img {
    min-height: 420px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .page-hero {
    min-height: 360px;
    padding: 136px 0 72px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .site-header {
    width: min(var(--container), calc(100% - 56px));
    margin-top: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .hero,
  .page-hero,
  .about-story,
  .about-values,
  .about-choose,
  .contact-main,
  .contact-info,
  .service-detail,
  .website-features,
  .domain-search,
  .service-packages,
  .service-faq,
  .services,
  .standout,
  .portfolio,
  .process,
  .our-work,
  .blog-list-section,
  .blog-detail-section,
  .testimonials,
  .team,
  .contact-section {
    padding-block: 74px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .page-hero {
    min-height: 330px;
    padding-top: 126px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .breadcrumb {
    margin-top: 30px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(42px, 11vw, 54px);
    line-height: .98;
    word-break: normal;
  }

  .narrow-heading h2,
  .center-heading h2,
  .standout-heading h2,
  .process h2,
  .about-intro h2,
  .about-choose h2,
  .contact-main h2,
  .contact-info h2,
  .service-detail-copy h2,
  .website-features-heading h2,
  .domain-search-copy h2,
  .service-packages h2,
  .service-faq-copy h2,
  .blog-detail-copy h2,
  .contact-copy h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.06;
    word-break: normal;
  }

  .hero-copy p,
  .standout-heading p,
  .process-copy p,
  .about-intro p,
  .about-values p,
  .contact-map-placeholder p,
  .service-detail-copy p,
  .website-features-heading p,
  .domain-search-copy p,
  .service-faq-copy p,
  .blog-card-copy p,
  .blog-detail-copy p,
  .contact-copy p {
    font-size: 16px;
    word-break: normal;
    max-width: none;
  }

  .hero-copy,
  .hero-copy p,
  .hero-actions,
  .narrow-heading,
  .center-heading,
  .standout-heading,
  .process-copy,
  .about-intro,
  .about-values article,
  .about-choose,
  .contact-copy,
  .contact-copy p,
  .contact-map-placeholder,
  .contact-map-embed,
  .service-detail-copy,
  .website-features-heading,
  .domain-search-copy,
  .service-faq-copy,
  .blog-list-section,
  .blog-list-section .center-heading,
  .blog-detail-copy,
  .contact-form,
  .contact-details,
  .contact-socials,
  .site-footer,
  .page-hero,
  .breadcrumb,
  .team-card {
    text-align: center;
  }

  .service-card p,
  .project-overlay p,
  .blog-card-copy p,
  .blog-content,
  .about-points p,
  .contact-info-grid p,
  .accordion-item p {
    word-break: normal;
    max-width: 100%;
  }

  .contact-main-grid {
    gap: 24px;
    margin-top: 42px;
  }

  .contact-page-form {
    padding: 24px;
  }

  .contact-page-button {
    width: 100%;
  }

  .contact-page-media img {
    min-height: 300px;
  }

  .contact-info-grid {
    gap: 16px;
    margin-top: 36px;
  }

  .contact-info-grid article {
    grid-template-columns: 32px 1fr;
    min-height: 0;
    padding: 24px 22px;
  }

  .contact-info-grid h3 {
    font-size: 20px;
  }

  .contact-map-placeholder {
    min-height: 300px;
    margin-top: 42px;
    padding: 28px;
  }

  .contact-map-embed {
    min-height: 300px;
    margin-top: 42px;
  }

  .contact-map-embed iframe {
    min-height: 300px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card-media {
    height: 220px;
  }

  .blog-card-copy {
    padding: 22px;
    text-align: left;
  }

  .blog-card-copy h2 {
    font-size: 30px;
  }

  .blog-page .page-hero h1,
  .blog-detail-page .page-hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .blog-detail-article {
    gap: 38px;
  }

  .blog-detail-media {
    height: 260px;
    border-width: 3px;
    border-radius: 22px;
  }

  .blog-detail-excerpt,
  .blog-content {
    font-size: 16px;
    text-align: left;
  }

  .blog-page .blog-list-section,
  .blog-page .blog-card-copy,
  .blog-detail-page .blog-detail-copy,
  .blog-detail-page .blog-detail-excerpt,
  .blog-detail-page .blog-content {
    text-align: left;
  }

  .service-detail-media img {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-width: 3px;
    border-radius: 22px;
  }

  .service-detail-media figcaption {
    left: 16px;
    bottom: 16px;
  }

  .service-detail-copy {
    margin-top: 46px;
    margin-inline: auto;
  }

  .website-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
  }

  .website-feature-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .domain-search-form {
    padding: 24px;
  }

  .domain-search-control {
    grid-template-columns: 1fr;
  }

  .domain-search-control input,
  .domain-suffix-trigger,
  .domain-search-control > button {
    min-height: 54px;
  }

  .domain-search-help {
    text-align: center;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
  }

  .package-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .service-faq-list {
    gap: 34px;
  }

  .faq-button {
    margin-inline: auto;
  }

  .about-story-inner {
    gap: 42px;
  }

  .about-media-grid {
    gap: 20px;
  }

  .about-media img,
  .about-media-small img {
    min-height: 260px;
  }

  .about-values-grid {
    gap: 42px;
  }

  .about-values h2 {
    font-size: 30px;
  }

  .about-points article {
    padding: 24px 22px;
  }

  .about-points h3 {
    font-size: 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    min-height: 244px;
    padding: 26px 26px 66px;
  }

  .card-arrow {
    left: 26px;
    bottom: 20px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
    padding: 24px;
  }

  .trust-card strong {
    margin-top: 0;
  }

  .work-tab-control {
    padding-inline: 0;
  }

  .work-tab-arrow {
    display: none;
  }

  .work-tab-list {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px 6px;
    scroll-padding-inline: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .work-tab-row {
    justify-content: flex-start;
    width: max-content;
  }

  .work-tab-row:nth-child(2) {
    transform: none;
    margin-left: 96px;
  }

  .work-tab {
    min-width: 220px;
    padding: 15px 25px;
    scroll-snap-align: start;
  }

  .work-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-track {
    --testimonial-gap: 20px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .testimonial-card {
    min-height: 280px;
    padding: 24px;
    justify-items: center;
    text-align: center;
  }

  .testimonial-card p {
    margin-inline: auto;
  }

  .team-card img {
    max-width: 300px;
    margin-inline: auto;
  }

  .contact-grid {
    gap: 46px;
  }

  .contact-details,
  .contact-socials {
    margin-top: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 72px;
  }

  .portfolio-track {
    grid-auto-columns: minmax(284px, calc(100vw - 44px));
    gap: 16px;
    margin-left: 14px;
  }

  .project-card {
    height: 320px;
  }

  .work-zoom-button {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 14px;
  }

  .work-hint {
    right: 66px;
    bottom: 18px;
  }

  .work-preview-modal {
    padding: 16px;
  }

  .work-preview-dialog {
    border-width: 2px;
    border-radius: 20px;
    padding: 20px;
  }

  .work-preview-dialog h2 {
    font-size: 24px;
    text-align: left;
  }

  .work-preview-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .work-browser-frame {
    border-width: 2px;
    border-radius: 14px;
  }

  .work-browser-bar {
    min-height: 40px;
    gap: 8px;
    padding: 0 10px;
  }

  .work-browser-lights span {
    width: 9px;
    height: 9px;
  }

  .work-browser-address {
    padding: 5px 10px;
    font-size: 10px;
  }

  .work-browser-power {
    width: 20px;
    height: 20px;
  }

  .work-preview-scroll {
    max-height: 28vh;
  }

  .project-overlay {
    inset: auto 18px 18px;
  }

  .accordion-item button {
    padding: 20px;
  }

  .accordion-item h3 {
    font-size: 24px;
  }

  .accordion-item p {
    padding: 0 20px;
  }

  .accordion-item.is-open p {
    padding-bottom: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 164px;
    height: 52px;
    padding: 0 11px 0 15px;
    font-size: 14px;
  }

  main h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (hover: none) {
  .header-cta:hover,
  .pill-button:hover,
  .form-button:hover,
  .testimonial-arrow:hover,
  .floating-whatsapp:hover {
    transform: none;
    background: #ff2d2d;
    color: #fdfde1;
  }

  .work-more .pill-button:hover {
    background: #fbfaf1;
    color: var(--color-ink);
  }

  .header-cta:hover {
    --button-layer-depth: 6px;
  }

  .pill-button:hover {
    --button-layer-depth: 8px;
  }

  .form-button:hover {
    box-shadow: 0 7px 0 -1px #fbfaf1;
  }

  .testimonial-arrow:hover {
    background: #fbfaf1;
    color: var(--color-ink);
    box-shadow: 0 4px 0 var(--color-line);
  }

  .floating-whatsapp:hover {
    background: var(--color-red);
    box-shadow: 0 6px 0 var(--color-line);
  }

  .work-more .pill-button:hover:not(:active),
  .work-more .pill-button:focus:not(:active) {
    background: #fbfaf1;
    color: var(--color-ink);
  }

  .testimonial-arrow:hover:not(:active),
  .testimonial-arrow:focus:not(:active) {
    background: #fbfaf1;
    color: var(--color-ink);
    box-shadow: 0 4px 0 var(--color-line);
  }

  .header-cta:active,
  .pill-button:active {
    transform: translateY(5px);
    --button-layer-depth: 3px;
    background: #e52727;
    color: #fdfde1;
  }

  .work-more .pill-button:active {
    background: #e52727;
    color: #fbfaf1;
  }

  .form-button:active {
    transform: translateY(4px);
    background: #e52727;
    color: #fdfde1;
    box-shadow: 0 3px 0 -1px #fbfaf1;
  }

  .testimonial-arrow:active {
    transform: translateY(3px);
    background: #ff2d2d;
    color: #fdfde1;
    box-shadow: 0 1px 0 var(--color-line);
  }

  .floating-whatsapp:active {
    transform: translateY(4px);
    background: #e52727;
    box-shadow: 0 2px 0 var(--color-line);
  }

  .testimonial-dot:hover {
    transform: none;
  }
}

.maintenance-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(229, 39, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 39, 39, 0.06) 1px, transparent 1px),
    var(--color-black);
  background-size: 38px 38px;
  color: var(--color-soft);
}

.maintenance-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.maintenance-card {
  width: min(720px, 100%);
  border: 2px solid var(--color-red);
  border-radius: 28px;
  background: rgba(3, 3, 3, 0.92);
  padding: clamp(34px, 7vw, 70px);
  text-align: center;
}

.maintenance-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 8px;
  object-fit: cover;
}

.maintenance-card .eyebrow {
  margin: 0 0 14px;
  color: var(--color-red);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
}

.maintenance-card h1 {
  margin: 0;
  color: var(--color-soft);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -1px;
}

.maintenance-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--color-soft);
  font-size: 18px;
  font-weight: 400;
}

.maintenance-cta {
  width: fit-content;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  border: 2px solid var(--color-soft);
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-soft);
  padding: 14px 20px 14px 28px;
  box-shadow: 0 5px 0 var(--color-soft);
  font-weight: 700;
}

@media (max-width: 760px) {
  .maintenance-card {
    border-radius: 22px;
  }

  .maintenance-card h1 {
    font-size: 32px;
  }

  .maintenance-card p:not(.eyebrow) {
    font-size: 16px;
  }
}
