html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: #fafafb;
  color: #23252f;
  font-family:
    Pretendard,
    -apple-system,
    "Apple SD Gothic Neo",
    sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
a {
  color: #ff6b4a;
  text-decoration: none;
}
a:hover {
  filter: brightness(0.94);
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #ff6b4a;
  outline-offset: 3px;
}
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(250, 250, 251, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ededf0;
}
.nav-inner {
  max-width: 1200px;
  min-height: 70px;
  margin: auto;
  padding: 12px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  color: #23252f;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.hero-brand-name {
  white-space: nowrap;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}
.nav-links > a:not(.nav-cta) {
  color: #23252f;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ff6b4a;
  color: white;
  font-weight: 700;
}
.contact-type {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: white;
  color: #5b5e69;
  border: 1px solid #ededf0;
}
.contact-type[aria-pressed="true"] {
  background: #ff6b4a;
  color: white;
  border-color: #ff6b4a;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
#contact-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
#contact-status[data-kind="error"] {
  color: #b12e26;
}
#contact-status[data-kind="success"] {
  color: #23663f;
}
#contact-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}
@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .nav-links {
    overflow-x: auto;
    width: 100%;
    margin-left: 0;
    padding-bottom: 2px;
  }
  main {
    padding-top: 112px !important;
  }
  section[data-screen-label="01 Hero"] {
    gap: 0 !important;
  }
  section[data-screen-label="01 Hero"] > div:last-child {
    overflow: hidden;
    min-height: 360px !important;
    justify-content: flex-start !important;
  }
  section[data-screen-label="01 Hero"] > div:last-child > div {
    transform: scale(0.75);
    transform-origin: top left;
  }
}
