* {
  cursor: none !important;
}

::selection {
  background: #0f172a;
  color: #ffffff;
}

::-webkit-selection {
  background: #0f172a;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-y: scroll;
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: #0f172a;
  background: #ffffff;
  cursor: none;
}

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

button {
  font: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
    135deg,
    #ff6a00 0%,
    #ff8c42 60%,
    #ffb36b 100%
  );

  backdrop-filter: none; /* 🔥 blur 제거 */
  border-bottom: none;   /* 🔥 경계 제거 */
}

.header.is-scrolled {
  background: rgba(255, 106, 0, 0.75); /* 🔥 오렌지로 변경 */
  backdrop-filter: blur(16px);
  border-bottom: none;
}


.header-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  height: 120px;
  min-height: 120px;
  column-gap: 24px;
  position: relative;
  z-index: 1;
}

.logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 160px;
  height: 96px;
  min-height: 96px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.logo-btn img {
  display: block;
  height: auto;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 16px 24px 20px;
}

.mobile-nav a {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #ff6a00;
  padding-left: 8px;
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: width 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
  width: 28px;
}

.nav a {
  position: relative;
  color: #0f172a; /* 🔥 기본 검정 */
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #ffffff; /* 🔥 선택/호버만 화이트 */
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ffffff; /* 🔥 언더라인 화이트 */
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.hero-stage {
  position: relative;
  height: 70vh;
  min-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.slide-content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  color: #ffffff;
}

.slide-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.slide-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 820px;
  min-height: 120px;
  margin: 0;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  text-align: left;
}

.slide-title span {
  display: block;
  width: 100%;
}

.slide-description {
  width: 100%;
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.arrow-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.arrow-prev {
  left: 16px;
}

.arrow-next {
  right: 16px;
}

.arrow-btn svg {
  width: 20px;
  height: 20px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dot.is-active {
  background: #ffffff;
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: #f8fafc;
}

.section-title {
  margin: 32px 0 16px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
}

.section-text-lg {
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.2;
  color: #475569;
}

.about-intro {
  max-width: 820px;
}

.about-grid,
.project-grid {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

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

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

.project-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.text-link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
}

.card.white {
  background: #ffffff;
}

.card.soft {
  background: #f8fafc;
}

.card.dark {
  background: #f8fafc;
}

.card-label {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.card-title {
  margin: 12px 0 0;
  font-size: 32px;
  font-weight: 700;
}

.card-text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.project-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.project-thumb,
.project-thumb-lg {
  border-radius: 16px;
  background: #e2e8f0;
  overflow: hidden;
}

.project-thumb img,
.project-thumb-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-thumb {
  height: 160px;
  margin-bottom: 16px;
}

.project-thumb-lg {
  height: 208px;
  margin-bottom: 24px;
}

.project-card h3,
.project-card-lg h3 {
  margin: 0;
}

.project-card p,
.project-card-lg p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.project-carousel {
  position: relative;
  margin-top: 64px;
  padding: 0 72px 56px;
}

.project-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.project-carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.7s ease;
  will-change: transform;
}

.project-slide {
  flex: 0 0 33.3333%;
  padding: 0 14px;
  opacity: 0.28;
  transform: scale(0.82);
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
  filter: blur(0.3px);
}

.project-slide.is-center {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.project-slide-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.project-slide-image {
  height: 300px;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 28px 28px 0 0;
}

.project-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide-body {
  padding: 28px 24px 30px;
  text-align: center;
}

.project-slide-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #94a3b8;
  text-transform: uppercase;
}

.project-slide-body h3 {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
}

.project-slide-body p:last-child {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.project-carousel-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.project-carousel-arrow:hover {
  background: #ff6a00;
}

.project-carousel-arrow.prev {
  left: 0;
}

.project-carousel-arrow.next {
  right: 0;
}

.project-carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.project-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.project-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-carousel-dots button.is-active {
  background: #0f172a;
  transform: scale(1.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  width: 100%;
}

.contact-info p {
  margin: 0;
}

.contact-meta {
  margin-top: 24px;
}

.contact-meta p {
  margin: 0 0 6px;
  line-height: 1.5;
  font-size: 14px;
  color: #475569;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}

.input {
  height: 56px;
}

.textarea {
  min-height: 180px;
  padding-top: 16px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  border-color: #0f172a;
}

.primary-btn {
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: #ff6a00;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.25);
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(255, 106, 0, 0.2);
}

.subpage-main {
  padding: 80px 0;
}

.subpage-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.subpage-head {
  width: 100%;
  max-width: none;
  padding-left: 0;
  margin-left: 0;
}

.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
}

.subpage-title {
  margin: 16px 0 0;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.about-download {
  margin-top: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid #0f172a;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  background: #1e293b;
  border-color: #1e293b;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.project-page-head {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.project-page-head-text {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.project-filter button {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #0f172a;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.project-filter button:hover,
.project-filter button.is-active {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #ffffff;
}

.project-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.project-card-lg {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-category {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
}

.project-extra {
  display: none;
}

.project-extra.is-visible {
  display: block;
}

.project-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.project-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 52px;
  padding: 0 20px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.project-more-btn:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.map-section {
  margin-top: 56px;
}

.map-head {
  margin-bottom: 20px;
}

.map-title {
  margin: 12px 0 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.map-text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #ff6a00 0%,
    #ff8c42 60%,
    #ffb36b 100%
  );
  color: #ffffff;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.45) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.35) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.footer * {
  position: relative;
  z-index: 1;
}

.footer p,
.footer a,
.footer-sub {
  color: rgba(255, 255, 255, 0.85);
}

.footer a:hover {
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 32px 24px;
  color: inherit;
  font-size: 14px;
}

.footer-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: inherit;
}

.footer-sub p {
  margin: 0;
}

.footer-info {
  font-size: 13px;
  line-height: 1.5;
}

.footer-info p {
  margin: 2px 0;
}

.project-card,
.project-card-lg {
  position: relative;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
  cursor: pointer;
}

.project-thumb,
.project-thumb-lg {
  position: relative;
}

.project-thumb img,
.project-thumb-lg img {
  transition: transform 0.45s ease;
}

.project-card-lg::after {
  content: "View Detail";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #0f172a;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background 0.25s ease;
}

.project-card-lg:hover::after {
  opacity: 1;
  transform: translateY(0);
  background: #ff6a00;
}

.project-card::before,
.project-card-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
  transition: box-shadow 0.28s ease;
}

.project-card:hover,
.project-card-lg:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    0 16px 36px rgba(255, 106, 0, 0.35);
}

.project-card:hover::after,
.project-card-lg:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover::before,
.project-card-lg:hover::before {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.project-card:hover .project-thumb img,
.project-card-lg:hover .project-thumb-lg img {
  transform: scale(1.05);
}

.project-card h3,
.project-card-lg h3 {
  transition: color 0.28s ease;
}

.project-card:hover h3,
.project-card-lg:hover h3 {
  color: #020617;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1e293b;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.social-link:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.2);
}

.about-card-image {
  position: relative;
  margin-top: 24px;
  width: 100%;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e8f0;
}

.client-section {
  margin-top: 96px;
  text-align: center;
}

.client-eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ff6a00;
}

.client-title {
  margin: 12px 0 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.client-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}

.client-item {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.client-item img {
  width: 60%;
  height: auto;
  opacity: 0.4;
  transition: all 0.25s ease;
}

.client-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.about-card-image img {
  position: relative;
  z-index: 1;
  width: 100%;      
  height: 100%;      
  object-fit: cover;  
  transition: transform 0.4s ease;
}

.about-card-image::after {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card:hover .about-card-image::after {
  opacity: 0.7;
}

.about-page .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.about-page .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    0 16px 36px rgba(255, 106, 0, 0.18);
}

.about-page .card.dark .about-card-image {
  background: rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-page .card.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.about-page .card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #0f172a;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.privacy-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f172a;
}

.privacy-check strong {
  color: #0f172a;
  font-weight: 700;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.project-modal.is-open {
  display: flex;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
}

.project-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 0;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.project-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.project-modal-close:hover {
  background: rgba(15, 23, 42, 0.14);
}

.project-modal-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
}

.project-modal-image {
  position: relative;
  background: #e2e8f0;
  overflow: hidden;
}

.project-modal-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-modal-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.project-modal-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
}

.project-modal-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.project-modal-slide-btn:hover {
  background: rgba(255, 106, 0, 0.9);
}

.project-modal-slide-btn.prev {
  left: 16px;
}

.project-modal-slide-btn.next {
  right: 16px;
}

.project-modal-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.project-modal-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.project-modal-dots button.is-active {
  background: #ffffff;
}

.project-modal-content {
  padding: 56px 40px 40px;
  overflow-y: auto;
}

.project-modal-category {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
}

.project-modal-title {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.project-modal-desc {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.project-modal-meta {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.project-modal-meta-item {
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.project-modal-meta-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.project-modal-meta-value {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #0f172a;
}

body.modal-open {
  overflow: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.preloader-logo {
  width: 160px;
  height: auto;
  animation: logoFade 1.2s ease-in-out infinite;
}

.preloader-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #0f172a;
  text-align: center;
  opacity: 0;
  animation: textFade 1.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes logoFade {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes textFade {
  to {
    opacity: 1;
  }
}

.highlight {
  position: relative;
  display: inline-block;
  padding: 2px 6px;
  font-weight: 700;
  color: #ffffff;   /* 🔥 텍스트 흰색 */
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 0;
  height: 85%;

  background: #ff4d00;
  opacity: 1;       /* 🔥 더 선명하게 */

  border-radius: 4px;
  z-index: -1;

  animation: highlightDraw 1.3s ease forwards;
  animation-delay: 0.6s;
}

/* 애니메이션 */
@keyframes highlightDraw {
  to {
    width: 100%;        /* 👉 쓱 칠해짐 */
  }
}

/* 기본 (모바일 기준) */
.preloader-logo {
  width: 350px;
}

/* PC에서만 확대 */

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 첫 화면 자연스럽게 등장 */
body.is-loading .header,
body.is-loading main,
body.is-loading .footer {
  opacity: 0;
  transform: translateY(18px);
}

.header,
main,
.footer {
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

body.is-loaded .header,
body.is-loaded main,
body.is-loaded .footer {
  opacity: 1;
  transform: translateY(0);
}

html.skip-preloader #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.skip-preloader body.is-loading .header,
html.skip-preloader body.is-loading main,
html.skip-preloader body.is-loading .footer {
  opacity: 1;
  transform: translateY(0);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #0f172a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;

  transform: translate(-50%, -50%); /* 🔥 추가 */
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: rgba(255, 106, 0, 0.5);

  transform: translate(-50%, -50%); /* 🔥 추가 */
}

@media (min-width: 769px) {
  .preloader-logo {
    width: 450px;
  }

  .logo-btn {
    width: 220px;
    height: 96px;
    min-height: 96px;
  }

  .logo-btn img {
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .header-inner {
    grid-template-columns: 140px auto;
    justify-content: space-between;
    height: 80px;
    min-height: 80px;
    column-gap: 16px;
  }

  .logo-btn {
    width: 140px;
    height: 64px;
    min-height: 64px;
  }

  .logo-btn img {
    height: auto;
    max-height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .mobile-nav-inner {
    padding: 14px 24px 18px;
  }

.hero-stage {
  height: 60vh;
  min-height: 460px;
  max-height: 600px;
}

@supports (height: 1svh) {
  .hero-stage {
    height: 60svh;
    min-height: 460px;
    max-height: 600px;
  }
}

  .slide-content {
    padding: 0 24px 84px;
  }

  .slide-subtitle {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .slide-title {
    max-width: 100%;
    min-height: auto;
    font-size: 34px;
    line-height: 1.15;
    padding-right: 0;
  }

  .subpage-title,
  .section-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .slide-description,
  .section-text-lg,
  .project-page-head-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .slide-description {
    max-width: 100%;
    margin-top: 16px;
  }

  .arrow-btn {
    top: auto;
    bottom: 56px;
    margin: 0;
    width: 36px;
    height: 36px;
    z-index: 3;
  }

  .arrow-prev {
    left: 16px;
  }

  .arrow-next {
    right: 16px;
  }

  .dots {
    bottom: 20px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .subpage-main {
    padding: 56px 24px;
  }

  .about-grid,
  .project-grid,
  .project-grid-lg,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-grid,
  .project-grid,
  .project-grid-lg {
    margin-top: 32px;
  }

  .project-head,
  .project-page-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .card,
  .project-card,
  .project-card-lg,
  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-text,
  .project-card p,
  .project-card-lg p {
    font-size: 14px;
    line-height: 1.65;
  }

  .project-thumb {
    height: 180px;
    margin-bottom: 14px;
  }

  .project-thumb-lg {
    height: 220px;
    margin-bottom: 18px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-meta {
    margin-top: 24px;
    gap: 12px;
  }

  .contact-form {
    gap: 14px;
  }

  .input {
    height: 52px;
  }

  .textarea {
    min-height: 160px;
  }

  .subpage-head,
  .subpage-shell {
    width: 100%;
    max-width: 100%;
  }

  .project-page-head-text,
  .section-text-lg {
    max-width: 100%;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px;
  }

  .social-link:hover {
    transform: none;
    box-shadow: none;
    background: #0f172a;
  }

  .about-card-image {
    height: 180px;
    margin-top: 20px;
    border-radius: 16px;
  }

  .mobile-menu-btn svg {
    stroke: #ff6a00;
  }

  .project-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
  }

  .project-modal-slide-btn {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .project-modal-slide-btn.prev {
    left: 12px;
  }

  .project-modal-slide-btn.next {
    right: 12px;
  }

  .project-modal-dots {
    bottom: 12px;
  }

  .project-modal-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .project-modal-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-modal-image {
    height: 260px;
  }

  .project-modal-content {
    padding: 28px 22px 24px;
  }

  .project-modal-title {
    font-size: 28px;
  }

  .project-modal-desc,
  .project-modal-meta-value {
    font-size: 14px;
  }

  .project-filter {
    gap: 10px;
    margin-top: 24px;
  }

  .project-filter button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .project-more-wrap {
    margin-top: 24px;
  }

  .project-more-btn {
    height: 48px;
    min-width: 60px;
    font-size: 22px;
  }

  .map-section {
    margin-top: 40px;
  }

  .map-title {
    font-size: 28px;
  }

  .map-text {
    font-size: 15px;
  }

  .map-frame {
    height: 320px;
    border-radius: 20px;
  }

  .hero-stage {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.client-title {
  font-size: 18px;
}

.client-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.client-item {
  height: 120px;
}

  .project-carousel {
    margin-top: 32px;
    padding: 0 0 52px;
    overflow: hidden;
  }

  .project-carousel-viewport {
    overflow: hidden;
    width: 100%;
  }

  .project-carousel-track {
    display: flex;
    align-items: stretch;
  }

.project-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0;
  opacity: 1;
  transform: none;
  filter: none;

  display: flex;
  align-items: stretch;
}

  .project-slide.is-center {
    opacity: 1;
    transform: none;
    filter: none;
  }

.project-slide-card {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%;
}

  .project-slide-image {
     height: 180px;
     overflow: hidden;
     border-radius: 16px 16px 0 0;
  }

.project-slide-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

  .project-slide-label {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .project-slide-body h3 {
    font-size: 24px;
    line-height: 1.2;
  }

.project-slide-body p:last-child {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;

  line-clamp: 2; /* 🔥 추가 */
}

  .project-carousel-arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 0;
    transform: none;
    background: #0f172a;
  }

  .project-carousel-arrow.prev {
    left: calc(50% - 50px);
  }

  .project-carousel-arrow.next {
    right: calc(50% - 50px);
  }

  .project-carousel-arrow svg {
    width: 18px;
    height: 18px;
  }

  .project-carousel-dots {
    margin-top: 16px;
    gap: 8px;
  }

  .project-carousel-dots button {
    width: 8px;
    height: 8px;
  }

@media (hover: none), (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail {
    display: none !important;
  }
}

}

.hero-scroll-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 28px;
  background: #ffffff;
  text-align: center;
}

.hero-scroll-indicator {
  text-align: center;
  color: #0f172a;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.scroll-icon {
  margin: 8px auto 0;
  width: 20px;
  height: 34px;
  border: 2px solid #0f172a;
  border-radius: 12px;
  position: relative;
}

.scroll-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: #0f172a;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 16px; }
}

.hero-scroll-section + .section {
  padding-top: 32px;
}

.scroll-top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 1000;

  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;

  background: #0f172a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  pointer-events: none;

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
  transition:
    opacity 0.3s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  background: #ff6a00;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.section-text-lg + p {
  margin-top: 0px;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    right: 25px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }
}

.sub-text {
  font-size: 14px;  /* 🔥 여기 조절 */
  color: #64748b;
}