@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDPGothic:wght@400;700&display=swap");

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/woff2/PretendardVariable.woff2") format("woff2");
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #111;
  --white: #f7f7f4;
  --gray: #d4d4d4;
  --blue: #2828ff;
  --yellow: #f2ff57;
  --soft-blue: #9698ff;
  --font-display: "BIZ UDGothic", "BIZ UDPGothic", monospace;
  --font-body: "Pretendard", "BIZ UDPGothic", sans-serif;
  --font-ko: "Pretendard", "BIZ UDPGothic", sans-serif;
  --pad-x: clamp(24px, 4.8vw, 64px);
  --pad-y: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

.fullscreen-section {
  min-height: 100svh;
  height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* Header & Nav */
.site-header {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  color: #fff;
  mix-blend-mode: difference;
  isolation: auto;
}

.brand {
  display: block;
  width: clamp(72px, 7vw, 104px);
  height: auto;
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  color: #fff;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
  z-index: 10001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Hero Section */
#home {
  position: relative;
  width: 100%;
  background-color: #f0f0f0;
  color: #000000;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-height: auto;
  height: auto;
}

.bs-typography-grid {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #000;
  background-color: #f0f0f0;
  z-index: 20;
}

.bs-text-row {
  font-family: var(--font-display);
  font-size: 25vw;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  padding: 15px 20px 5px 20px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.bs-text-row:last-child {
  border-top: 1px solid #000;
}

.bs-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  width: 100%;
  position: relative;
  background-color: #f0f0f0;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}

.bs-card-col {
  display: flex;
  flex-direction: column;
  height: calc(56.25vw + 3px);
  box-sizing: border-box;
  transform: none !important;
}

.bs-card-col:not(:last-child) {
  border-right: 1px solid #000;
}

.bs-card {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}

.bs-card-col .bs-card:last-child { border-bottom: none; }

.h-left-fixed { height: calc(14.0625vw + 1px); }
.bs-card-col:first-child .bs-card:last-child { height: 14.0625vw; }
.h-mid-1 { height: calc(22vw + 1px); }
.h-mid-2 { height: calc(16.25vw + 1px); }
.h-mid-3 { height: 18vw; }
.h-right-1 { height: calc(32vw + 3px); }
.h-right-2 { height: 24.25vw; }

.card-meta-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.2;
  font-family: var(--font-body);
  z-index: 15;
  pointer-events: none;
}

.meta-title { font-weight: bold; color: #000000; }

.card-media-placeholder {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  overflow: hidden;
  position: relative;
}

.card-media-placeholder img,
.card-media-placeholder video,
.placeholder-text-graphic {
  position: absolute;
  top: -7.5%;
  left: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0);
}

.bs-card:hover .card-media-placeholder img,
.bs-card:hover .card-media-placeholder video {
  filter: brightness(0.95);
}

.accent-bg { background-color: #ff0000; }
.placeholder-text-graphic {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -7.5%;
}

/* Slogan Section */
.slogan-section {
  height: auto;
  min-height: 0;
  background: var(--white);
  overflow: hidden;
  scroll-snap-align: none;
}

.slogan-top {
  padding-top: clamp(34px, 3.2vw, 58px);
  padding-bottom: clamp(28px, 3vw, 48px);
}

.slogan-line {
  font-family: var(--font-display);
  font-size: clamp(58px, 7.7vw, 136px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.slogan-top .slogan-line {
  padding-left: clamp(28px, 3.2vw, 64px);
  padding-right: clamp(28px, 3.2vw, 64px);
  text-align: left;
}

.slogan-band {
  padding-top: clamp(28px, 3vw, 52px);
  padding-bottom: clamp(30px, 3.2vw, 58px);
  background: var(--yellow);
}

.slogan-band .slogan-line {
  padding-left: clamp(28px, 3.2vw, 64px);
  padding-right: clamp(28px, 3.2vw, 64px);
  text-align: right;
}

.slogan-right { padding-left: 0; }

/* General Section */
.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  overflow: visible;
}

.section-label {
  position: relative;
  z-index: 3;
  margin-bottom: 44px;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.6;
}

.blue-section {
  background: var(--blue);
  color: var(--white);
}

/* About Section */
.about-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.team-animation-host {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

#field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.team-label {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  color: rgba(247, 247, 255, 0.96);
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.team-label strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(15px, 1.3vw, 21px);
  font-weight: 700;
  line-height: 1;
}

.team-label span {
  display: block;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 400;
  line-height: 1.15;
}

.about-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  pointer-events: none;
}

.about-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 6.3vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.about-copy .desc-en {
  max-width: 520px;
  margin-top: clamp(42px, 5vw, 72px);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.45;
}

.about-copy .desc-ko {
  max-width: 560px;
  margin-top: 24px;
  font-family: var(--font-ko);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.6;
}

.desc-en {
  max-width: 520px;
  margin-top: 34px;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.desc-ko {
  max-width: 560px;
  margin-top: 18px;
  font-family: var(--font-ko);
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.6;
}

/* Pipeline Section */
.pipeline-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--white);
}

.pipeline-section .section-label {
  margin-bottom: clamp(28px, 3.2vw, 48px);
}

.pipeline-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(480px, 1fr);
  gap: clamp(72px, 13vw, 210px);
  align-items: start;
}

.pipeline-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(66px, 6.2vw, 102px);
  font-weight: 700;
  line-height: 0.98;
}

.pipeline-desc {
  max-width: 780px;
  justify-self: end;
  padding-top: 8px;
}

.pipeline-desc .desc-en {
  margin-top: 0;
  max-width: 760px;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.28;
}

.pipeline-desc .desc-ko {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.pipeline-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  padding-top: clamp(54px, 6vw, 86px);
}

.pipeline-card {
  position: relative;
  min-height: clamp(420px, 32vw, 560px);
  padding: 0 clamp(24px, 2.4vw, 36px) 0;
  border-left: 1px solid rgba(17, 17, 17, 0.72);
  overflow: hidden;
}

.pipeline-card:last-child {
  border-right: 1px solid rgba(17, 17, 17, 0.72);
}

.pipeline-card h3 {
  position: relative;
  z-index: 3;
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1.2;
}

.pipeline-card p {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: min(100%, 560px);
  margin-top: 26px;
  color: var(--black);
  background: rgba(247, 247, 244, 0.72);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.pipeline-card-ko {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: min(100%, 560px);
  margin-top: 4px !important;
  color: var(--black);
  background: rgba(247, 247, 244, 0.72);
  font-family: var(--font-ko);
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.55 !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.floating-icon {
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: 0;
  left: auto;
  z-index: 1;
  width: clamp(230px, 19vw, 330px);
  height: clamp(230px, 19vw, 330px);
  transform: none;
  animation: floatIconRight 3.6s ease-in-out infinite;
}

.pipeline-icon {
  display: block;
  object-fit: contain;
  object-position: center;
}

.pipeline-card:nth-child(2) .floating-icon { animation-delay: -1.2s; }
.pipeline-card:nth-child(3) .floating-icon { animation-delay: -2.2s; }

/* Services Section */
.services-section {
  background: linear-gradient(180deg, #d8d8d8 0%, #d8d8d8 48%, var(--yellow) 100%);
  overflow-x: hidden;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(72px, 10vw, 180px);
  align-items: start;
  width: 100%;
}

.service-preview {
  position: sticky;
  top: 130px;
  justify-self: center;
  width: clamp(300px, 27vw, 430px);
  aspect-ratio: 1 / 1;
  margin-top: clamp(36px, 4vw, 72px);
  opacity: 0;
  transform: translateY(20px) rotate(-8deg) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-preview.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-8deg) scale(1);
}

.service-preview-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 16px 18px 0 rgba(0, 0, 0, 0.24);
}

.mobile-service-img { display: none; }

.service-list {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.service-item {
  border: 0;
  width: 100%;
  min-width: 0;
  margin-bottom: clamp(42px, 5vw, 78px);
}

.service-trigger {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: 1;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-thickness: 0.045em;
  text-underline-offset: 0.08em;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-panel .service-lead {
  max-width: 640px;
  margin-top: 22px;
  padding: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
}

.service-panel .service-ko {
  max-width: 640px;
  margin-top: 8px;
  padding: 0;
  font-family: var(--font-ko);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.service-panel ul {
  position: relative;
  max-width: 620px;
  margin: 24px 0 0;
  padding: 0 0 0 52px;
  list-style: none;
}

.service-panel ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(17, 17, 17, 0.22);
}

.service-panel li {
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.45;
}

/* Work Section */
.work-section {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.insta-isolated-slider-container {
  position: relative;
  width: 100%;
  margin: 50px 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
}

#instafeed {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

#instafeed:active { cursor: grabbing; }
#instafeed::-webkit-scrollbar { display: none !important; }

#instafeed a {
  flex: 0 0 calc(16.666% - 16.7px) !important;
  width: calc(16.666% - 16.7px) !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  color: #111 !important;
}

#instafeed img {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  transition: transform 0.3s ease;
  display: block !important;
  margin: 0;
  padding: 0;
}

#instafeed a:hover img { transform: scale(1.03); }

.insta-caption {
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 70% !important;
  text-align: left !important;
  display: block !important;
}

.insta-arrow-btn {
  position: absolute;
  top: calc(50% - 30px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  font-size: 26px;
  color: #333333;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s, transform 0.2s;
  padding: 0 0 4px 0;
}

.insta-arrow-btn:hover { background-color: #f7f7f7; }
.insta-arrow-btn.prev { left: -22px; }
.insta-arrow-btn.next { right: -22px; }

.latest-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 80px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.95;
}

.latest-line { display: block; }
.latest-bottom {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.latest-arrow {
  width: clamp(42px, 4.2vw, 62px);
  height: clamp(42px, 4.2vw, 62px);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
}

.latest-arrow img {
  width: 48%;
  height: 48%;
  display: block;
  object-fit: contain;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: var(--pad-y) var(--pad-x);
}

.contact-section .section-label {
  margin-bottom: 32px;
  font-size: clamp(16px, 1.55vw, 24px);
}

.contact-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(620px, 1.25fr);
  gap: clamp(64px, 10vw, 160px);
  min-height: 0;
}

.contact-left, .contact-right {
  display: flex;
  flex-direction: column;
  min-height: 0;
  justify-self: stretch;
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(54px, 5.1vw, 86px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: normal;
}

.contact-desc-en {
  max-width: 430px;
  margin-top: clamp(42px, 4vw, 58px);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
}

.contact-desc-ko {
  max-width: 430px;
  margin-top: 24px;
  font-family: var(--font-ko);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.6;
}

.contact-info {
  margin-top: auto;
  padding-top: 72px;
}

.contact-info a {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
}

.drag-panel {
  --knob-size: clamp(28px, 2.4vw, 38px);
  --bar-top: 0px;
  --bar-height: clamp(70px, 7vw, 100px);
  --drag-width: 94%;

  position: relative;
  width: calc(100% - var(--knob-size));
  height: clamp(145px, 15vw, 205px);
  margin-top: 18px;
  margin-left: calc(var(--knob-size) / 2);
  margin-right: calc(var(--knob-size) / 2);
}

.drag-fill {
  position: absolute;
  top: var(--bar-top);
  left: 0;
  width: var(--drag-width);
  height: var(--bar-height);
  background: var(--soft-blue);
  transition: width 0.12s ease-out;
}

.drag-handle {
  position: absolute;
  width: var(--knob-size);
  height: var(--knob-size);
  z-index: 2;
  border-radius: 50%;
  background: var(--white);
}

.drag-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: var(--bar-height);
  background: var(--white);
  transform: translateX(-50%);
}

.drag-handle.left {
  left: calc(var(--knob-size) / -2);
  top: calc(var(--bar-top) - (var(--knob-size) / 2));
}

.drag-handle.left::after { top: calc(var(--knob-size) / 2); }

.drag-handle.right {
  left: calc(var(--drag-width) - (var(--knob-size) / 2));
  top: calc(var(--bar-top) + var(--bar-height) - (var(--knob-size) / 2));
}

.drag-handle.right::after { bottom: calc(var(--knob-size) / 2); }

.contact-form {
  width: 100%;
  margin-top: auto;
  margin-left: auto;
  padding-top: clamp(36px, 4vw, 64px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 3.6vw, 56px);
  row-gap: clamp(28px, 3vw, 46px);
}

.form-row {
  display: block;
  border-bottom: 1px solid rgba(247, 247, 244, 0.72);
  padding: 0 0 24px;
}

.form-row label {
  display: block;
  margin-bottom: 34px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ko);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.4;
}

.form-row-message { margin-top: clamp(56px, 6.4vw, 96px); }
.form-row-message label { margin-bottom: 30px; }

.form-row textarea {
  min-height: clamp(140px, 15vw, 220px);
  resize: vertical;
}

.form-submit {
  margin-top: clamp(34px, 3vw, 48px);
  margin-left: auto;
  min-width: clamp(160px, 14vw, 230px);
  height: clamp(62px, 5vw, 84px);
  display: block;
  border: 2px solid rgba(247, 247, 244, 0.9);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-family: var(--font-body);
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1;
}

/* Footer Section */
.footer {
  position: relative;
  min-height: 100svh;
  padding: 75px var(--pad-x) 48px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(0, 116, 170, 0.7);
}

.footer-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(280px, 520px);
  column-gap: clamp(42px, 7vw, 112px);
  width: min(760px, 58vw);
}

.footer-group {
  display: flex;
  flex-direction: column;
}

.footer-home-group,
.footer-office-group {
  gap: 42px;
}

.footer .footer-title,
.footer-title {
  font-family: var(--font-display) !important;
  font-size: clamp(10px, 0.8vw, 12px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  color: rgba(247, 247, 244, 0.9) !important;
  text-transform: uppercase !important;
  margin-bottom: 44px !important;
}

.footer a,
.footer p {
  display: block;
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
  color: rgba(247, 247, 244, 0.92);
}

.footer .office p {
  font-family: var(--font-ko);
}

.footer-logo-box {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(42px, 5vw, 72px);
  z-index: 2;
  width: clamp(320px, 31vw, 620px);
  height: clamp(48px, 5.2vw, 92px);
  overflow: visible;
}

.footer-logo-mark {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left bottom;
}

.footer-time {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(42px, 5vw, 72px);
  width: 250px;
  height: 129px;
  overflow: hidden;
  z-index: 20;
}

.footer-time-frame {
  width: 250px;
  height: 129px;
  border: 0;
  display: block;
  background: transparent;
}

/* Animations */
.reveal-up,
.reveal-text {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-text {
  transform: translateY(0);
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.7s ease, clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-inview {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

@keyframes floatIconRight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}

/* ==========================================================================
   Media Queries (Responsive Integrated)
   ========================================================================== */

/* Tablet (900px 이하) */
@media (max-width: 900px) {
  .menu-toggle { display: flex !important; }

  .site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 10000;
    mix-blend-mode: difference;
    background: transparent !important;
    padding: 20px var(--pad-x);
  }

  .site-header.is-open {
    mix-blend-mode: normal !important;
  }

  .nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(17, 17, 17, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999 !important;
  }

  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav a {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    text-align: center !important;
    letter-spacing: 0.05em;
  }

  .bs-cards-grid { grid-template-columns: 1fr; border-bottom: none; }
  .bs-card-col { height: auto !important; }
  .bs-card-col:not(:last-child) { border-right: none; border-bottom: 1px solid #000; }
  .h-left-fixed, .h-mid-1, .h-mid-2, .h-mid-3, .h-right-1, .h-right-2 {
    height: 56.25vw !important;
    border-bottom: 1px solid #000;
  }
  .card-media-placeholder img, 
  .card-media-placeholder video, 
  .placeholder-text-graphic {
    top: 0; height: 100%; transform: none !important;
  }

  .about-section,
  .hero-section,
  .text-container,
  .marquee-wrapper,
  .service-intro { 
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .about-section *,
  .hero-section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-title,
  .banner-title,
  .about-title,
  h1, h2 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: clamp(1.4rem, 5.5vw, 2.2rem) !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    text-align: left !important;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--pad-y) + 20px);
    padding-bottom: 40px;
  }

  .about-copy {
    max-width: 100% !important;
    position: relative;
    z-index: 5;
  }

  .about-copy h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
    line-height: 1.02;
  }

  .about-copy .desc-en {
    margin-top: 24px !important;
    font-size: 14px !important;
    line-height: 1.5;
  }

  .about-copy .desc-ko {
    margin-top: 14px !important;
    font-size: 12px !important;
    line-height: 1.55;
    opacity: 0.85;
  }

  .team-label {
    transform: scale(0.72) !important;
    opacity: 0.85;
    z-index: 2;
  }

  .pipeline-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pipeline-desc { justify-self: start; }
  .pipeline-desc .desc-en { font-size: clamp(19px, 3.2vw, 24px); }

  .pipeline-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pipeline-card,
  .pipeline-card:last-child {
    min-height: 420px;
    border-right: 0;
  }

  .floating-icon {
    right: 24px;
    width: 240px;
    height: 240px;
  }

  .services-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .service-preview { display: none !important; }

  .mobile-service-img {
    display: block !important;
    width: min(280px, 72vw) !important;
    aspect-ratio: 1 / 1 !important;
    margin: 40px auto 44px auto !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: rotate(-8deg) !important;
    border-radius: 0 !important;
    box-shadow: 12px 14px 0 rgba(0, 0, 0, 0.24) !important;
  }

  .service-panel { transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
  .service-list { max-width: 100% !important; position: relative; z-index: 1; }
  .service-trigger { font-size: clamp(38px, 9vw, 56px) !important; line-height: 1.05; }

  #instafeed a {
    flex: 0 0 calc(33.333% - 13.4px) !important;
    width: calc(33.333% - 13.4px) !important;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-copy h2 { white-space: normal; }
  .drag-panel { margin-top: 0; }
  .contact-form { padding-top: 48px; }

  .footer-info { width: 100%; }
}

/* Mobile (620px 이하) */
@media (max-width: 620px) {
  :root { --pad-x: 22px; }

  .brand { width: 76px; }

  .slogan-line {
    font-size: clamp(34px, 12.4vw, 64px);
    line-height: 1;
  }

  .slogan-top .slogan-line,
  .slogan-band .slogan-line {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-copy h1 { font-size: clamp(44px, 13vw, 68px); }
  .about-copy .desc-en { font-size: 15px; }
  .about-copy .desc-ko { font-size: 13px; }

  .services-layout { gap: 34px !important; }

  .service-item { margin-bottom: 38px !important; }

  .service-trigger {
    font-size: clamp(34px, 10.5vw, 48px) !important;
    line-height: 1.08;
  }

  .service-panel .service-lead { font-size: 14px !important; }
  .service-panel .service-ko { font-size: 13px !important; }

  .mobile-service-img {
    width: min(240px, 68vw) !important;
    margin: 36px auto 40px auto !important;
    box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.24) !important;
  }

  #instafeed a {
    flex: 0 0 calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
  }

  .insta-arrow-btn.prev { left: -5px; }
  .insta-arrow-btn.next { right: -5px; }
  .insta-arrow-btn { width: 36px; height: 36px; font-size: 20px; }

  .contact-section { padding: var(--pad-y) var(--pad-x); }
  .form-grid { grid-template-columns: 1fr; }
  .form-row label { margin-bottom: 22px; }
  .form-submit { min-width: 132px; height: 54px; font-size: 22px; }

  .footer {
    min-height: auto;
    padding: 48px var(--pad-x) 36px !important;
    overflow: hidden;
  }

  .footer-info {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 20px !important;
  }

  .footer-home-group,
  .footer-office-group {
    gap: 28px !important;
  }

  .footer .footer-title,
  .footer-title {
    font-family: var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    color: rgba(247, 247, 244, 0.5) !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
  }

  .footer a {
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: rgba(247, 247, 244, 0.92);
  }

  .footer p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: rgba(247, 247, 244, 0.92) !important;
  }

  .footer .office p {
    font-family: var(--font-ko);
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .footer-logo-box {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 48px !important;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo-mark {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-time { display: none !important; }
}