:root {
  color-scheme: light;
}

:root {
  --color-primary: #7a9274;
  --color-divider: #d2decf;
  --color-lang-active: #afc2ab;
  --color-white: #ffffff;
  --font-sans: 'Noto Sans KR', sans-serif;
  --font-serif: 'Dutch 801 Rm BT', 'Times New Roman', 'Libre Baskerville', 'Noto Serif KR', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-sans);
  color: var(--color-primary);
  background-color: #ffffff;
  letter-spacing: normal; /* 자간 디폴트 */
  word-break: keep-all; /* 단어 단위 줄바꿈 */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* 헤더, 푸터, 버튼, 그림 위 텍스트 제외 드래그 선택 가능 설정 */
header,
button,
.btn-inquiry,
.lang-toggle,
.hero-img-placeholder-text {
  user-select: none;
}

main,
.hero-text-wrap {
  user-select: text;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--color-divider);
  background-color: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(8px);
}

.header-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-primary);
}

.logo-img {
  height: 57px;
  width: auto;
  object-fit: contain;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 7px;
  box-sizing: border-box;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
}

.logo-text .sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  margin-left: 6px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 19px;
}

.divider {
  width: 1px;
  height: 14px;
  background-color: var(--color-primary);
  display: inline-block;
  flex-shrink: 0;
}

.nav-item {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-primary);
  text-decoration: none;
  opacity: 1;
  transition: none;
  display: inline-block;
  white-space: nowrap;
  transform-origin: center center;
}

.nav-item:hover {
  opacity: 1;
  transform: scale(1.06);
}

.nav-item.active {
  font-weight: 700;
  opacity: 1;
  transform: scale(1.18) translateY(-1px);
}

/* 문의 버튼 (올리브 그린 타원형 버튼) */
.btn-inquiry {
  width: 62px;
  height: 37px;
  background-color: var(--color-primary);
  color: #ffffff !important;
  border-radius: 14px;
  font-family: var(--font-serif);
  font-size: 18.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease;
  margin-left: 6px;
  transform: none !important;
  min-width: auto !important;
  opacity: 1 !important;
}

.btn-inquiry:hover {
  background-color: #687f62;
  color: #ffffff !important;
}

.btn-inquiry.active {
  background-color: #687f62;
  color: #ffffff !important;
  transform: none !important;
}

/* 언어 토글 버튼 (분할 탭 스타일 - 50:50 동일 크기) */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  height: 30px;
  width: 76px;
  border: 1px solid var(--color-lang-active);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  margin-left: 6px;
  background-color: #ffffff;
}

.lang-btn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #ffffff;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background-color: var(--color-lang-active);
  color: #ffffff;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  width: 100%;
  padding-top: 150px;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 153px;
  padding-bottom: 90px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

/* Left Image Area */
.hero-image-wrap {
  width: 702px;
  height: 551px;
  border: 1px solid var(--color-primary);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background-color: #f7f9f6;
  flex-shrink: 0;
  transform: translateX(6px);
}

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

.hero-img-caption {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: var(--font-sans);
  font-size: 17.5px;
  font-weight: 500;
  color: #576e52;
  letter-spacing: normal;
  user-select: none;
  pointer-events: none;
  /* 글자 둘레에 1px 흰 테두리 (가독성) */
  text-shadow:
    1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff,
    0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

.hero-image-wrap.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--color-primary);
}

.hero-img-placeholder-text {
  display: none;
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 400;
}

.hero-image-wrap.placeholder .hero-img-placeholder-text {
  display: block;
}

/* Right Text Content */
.hero-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  transform: translateY(-3px);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
  transform: translateY(-3px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 55px;
}

.title-line {
  display: block;
}

.title-line.bold,
.hero-title .bold {
  font-weight: 700;
}

.title-line.extra-light {
  font-weight: 200;
}

.title-line.light {
  font-weight: 300;
}

/* Description Block */
.hero-description-block {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-left: 7px;
}

.desc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.desc-line-indicator {
  width: 3px;
  height: 45px;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.desc-p {
  font-family: var(--font-sans);
  font-size: 19.5px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.45;
}

/* Bottom Divider */
.hero-bottom-divider {
  width: 394px;
  height: 1px;
  background-color: var(--color-divider);
  margin: 160px auto 0 auto;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
  width: 100%;
  padding-top: 150px;
  position: relative;
}

.portfolio-header {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 110px;
}

.portfolio-title {
  width: 50%;
  text-align: right;
  padding-right: 47px;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 300;
  color: var(--color-primary);
}

.portfolio-header-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 3px));
  width: 1px;
  height: 42px;
  background-color: var(--color-primary);
}

.portfolio-subtitle {
  width: 50%;
  text-align: left;
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 19.5px;
  font-weight: 300;
  color: var(--color-primary);
  transform: translate(20px, 11px);
}

/* Grid Layout */
.portfolio-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: center;
  column-gap: 16px;
  row-gap: 80px;
}

/* Card Container (No shadow under image cards) */
.portfolio-card {
  width: 380px;
  height: 280px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-divider); /* #d2decf 테두리 색상 */
  box-sizing: border-box;
  cursor: pointer;
  background-color: #f7f9f6;
  box-shadow: none; /* 이미지들 밑 그림자 제거 */
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

/* Mouse hover subtle effect (No scale animation) */
.portfolio-card:hover {
  opacity: 0.92;
  border-color: #556c50;
}

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

/* Title Tag Box (80% opacity white box with 1px thin shadow) */
.card-title-tag {
  position: absolute;
  top: 12px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1c3f15;
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 600;
  padding: 5px 10px;
  line-height: 1.3;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  user-select: none;
  pointer-events: none;
  backdrop-filter: blur(2px);
  width: max-content;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

/* Bottom Divider */
.portfolio-bottom-divider {
  width: 394px;
  height: 1px;
  background-color: var(--color-divider);
  margin: 160px auto 0 auto;
}

/* Modal Lightbox for 100% Image View (Centered over Portfolio Grid) */
.image-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  overflow: hidden !important;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

/* 맑고 환한 화이트 블러 백드롭 */
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  max-width: 860px;
  width: 80%;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.97);
  transition: transform 0.25s ease;
}

.image-modal.active .modal-content {
  transform: scale(1);
}

.modal-img-viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #3d5236;
  box-sizing: border-box;
  background-color: #f7f9f6;
  touch-action: none;
  cursor: grab;
}

.modal-img-viewport:active {
  cursor: grabbing;
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.modal-caption {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 19.5px;
  font-weight: 500;
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  line-height: 1.35;
  user-select: text;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}

.en-page .modal-caption {
  font-family: 'Lora', 'Libre Baskerville', serif;
  font-size: 18.5px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-divider);
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* ==================== WORK PROCESS SECTION ==================== */
.process-section {
  width: 100%;
  padding-top: 150px;
}

.process-header {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 136px;
}

.process-title {
  width: 50%;
  text-align: right;
  padding-right: 13px;
  font-family: var(--font-serif);
  font-size: 48.5px;
  font-weight: 300;
  color: var(--color-primary);
}

.process-header-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 3px));
  width: 1px;
  height: 42px;
  background-color: var(--color-primary); /* 히어로 지도 테두리와 동일한 #7a9274 */
}

.process-subtitle {
  width: 50%;
  text-align: left;
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 19.5px;
  font-weight: 300;
  color: var(--color-primary);
  transform: translateY(8px);
}

/* Timeline Container */
.process-timeline-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

/* Central Line */
.timeline-central-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--color-primary); /* 섹션 타이틀 세로선과 동일한 #7a9274 */
  transform: translateX(-50%);
  z-index: 1;
}

.mobile-step-arrow {
  display: none;
}

/* Step Rows */
.process-step-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-right-img {
  flex-direction: row-reverse;
}

.step-media {
  width: 552px;
  height: 276px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--color-primary);
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #f7f9f6;
}

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

.step-text-content {
  width: 552px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  transform: translateY(-15px);
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.step-heading {
  font-family: var(--font-serif);
  font-size: 29.5px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.step-num {
  display: inline-block;
  font-weight: 700;
  font-size: 34.5px;
  margin-right: 10px;
  margin-bottom: 0;
  letter-spacing: -0.04em;
}

.step-title {
  display: inline;
  font-weight: 300;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.55;
  letter-spacing: 0;
}

/* Timeline Dots */
.timeline-dot-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.timeline-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 18px #ffffff;
}

/* Bottom Divider */
.process-bottom-divider {
  width: 394px;
  height: 1px;
  background-color: var(--color-divider);
  margin: 160px auto 0 auto;
}

/* ==================== STRENGTH / DIFFERENTIATOR SECTION ==================== */
.strength-section {
  width: 100%;
  padding-top: 150px;
}

.strength-header {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 110px;
}

.strength-title {
  width: 50%;
  text-align: right;
  padding-right: 47px;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 300;
  color: var(--color-primary);
}

.strength-header-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 3px));
  width: 1px;
  height: 42px;
  background-color: var(--color-primary);
}

.strength-subtitle {
  width: 50%;
  text-align: left;
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 19.5px;
  font-weight: 300;
  color: var(--color-primary);
  transform: translateY(2px);
}

/* Container */
.strength-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Row Top (3 Columns) */
.strength-row-top {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Row Bottom (2 Columns) */
.strength-row-bottom {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 140px;
}

/* Dividers between columns (Uniform 48px gaps) */
.strength-row-divider,
.strength-row-bottom .strength-row-divider {
  width: 1px;
  background-color: var(--color-primary);
  margin-left: 48px;
  margin-right: 48px;
  flex-shrink: 0;
}

/* Strength Cards (All 316px width) */
.strength-card,
.card-narrow,
.card-wide,
.card-bottom {
  width: 316px;
  display: flex;
  flex-direction: column;
}

.card-wide .strength-card-title,
.card-wide .strength-card-desc {
  width: 100%;
}

.strength-card-title {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 23px;
}

/* Mobile-only elements: hidden on Desktop (1240) and Tablet (1024) */
.mobile-br,
.strength-card-title br,
.info-row.mobile-only-row,
.mobile-only-row {
  display: none !important;
}

/* Desktop & Tablet line breaks: visible by default */
.desktop-br {
  display: inline;
}

/* Tablet-only line break: 데탑·모바일에서는 숨김, 타블렛에서만 표시 */
.tablet-br {
  display: none;
}

/* 푸터 구분선(|): 데탑/타블렛만 표시, 모바일에서는 숨김 */
.footer-pipe {
  display: inline;
}

.info-row.desktop-only-row,
.desktop-only-row {
  display: flex !important;
}

.strength-media {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--color-primary);
  box-sizing: border-box;
  margin-bottom: 23px;
  background-color: #f7f9f6;
  flex-shrink: 0;
}

.media-narrow {
  width: 316px;
  height: 224px;
}

.media-wide {
  width: 316px;
  height: 224px;
}

.media-bottom {
  width: 316px;
  height: 210px;
}

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

.strength-card-desc {
  font-family: var(--font-sans);
  font-size: 20.5px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.55;
  letter-spacing: 0;
}

/* Bottom Divider */
.strength-bottom-divider {
  width: 394px;
  height: 1px;
  background-color: var(--color-divider);
  margin: 160px auto 0 auto;
}

/* ==================== ABOUT SECTION (온지도소개) ==================== */
.about-section {
  width: 100%;
  padding-top: 150px;
}

.about-header {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 110px;
}

.about-title {
  width: 50%;
  text-align: right;
  padding-right: 20px;
  font-family: var(--font-serif);
  font-size: 39.5px;
  font-weight: 300;
  color: var(--color-primary);
}

.about-header-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 3px));
  width: 1px;
  height: 42px;
  background-color: var(--color-primary);
}

.about-subtitle {
  width: 50%;
  text-align: left;
  padding-left: 20px;
  font-family: var(--font-sans);
  font-size: 20.5px;
  font-weight: 300;
  color: var(--color-primary);
  transform: translateY(2px);
  line-height: 1.35;
}

/* Container */
.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

/* Center Line (Exact 50% center & height matching lowest text) */
.about-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 50px;
  width: 1px;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  z-index: 1;
}

/* Left Side */
.about-left {
  width: 50%;
  padding-right: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  box-sizing: border-box;
}

.about-logo-wrap {
  margin-top: 33px;
  margin-bottom: 87px;
  max-width: 186px;
  transform: translate(-235px, -15px); /* 소개글자 쪽으로 15px 내림 */
}

.about-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  transform: translateY(-11px);
}

.info-row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
}

.info-label {
  font-family: var(--font-serif);
  font-size: 27.5px;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  width: 210px;
  text-align: right;
  flex-shrink: 0;
  transform: translateY(-5px);
}

.info-value {
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  width: 320px;
  flex-shrink: 0;
}

.cert-highlight {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* 소재지·인증 줄바꿈된 두 줄의 간격을 윗줄과 바짝 붙임 (데탑/타블렛) */
.tight-lines {
  display: inline-block;
  line-height: 1.25;
}

/* Right Side */
.about-right {
  width: 50%;
  padding-left: 37px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.profile-photo-wrap {
  width: 256px;
  height: 310px;
  border-radius: 0;
  border: 1px solid var(--color-primary);
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 18px;
  background-color: #f7f9f6;
}

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

.profile-bio {
  font-family: var(--font-sans);
  font-size: 20.5px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.45;
  margin-bottom: 50px;
}

.about-sub-block {
  margin-bottom: 50px;
  width: 100%;
}

.about-sub-heading {
  font-family: var(--font-serif);
  font-size: 27.5px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 21px;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 300;
  color: var(--color-primary);
}

.scope-list .bold-prefix {
  font-weight: 600;
  font-family: var(--font-sans);
  margin-right: 4px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 29px;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 300;
  color: var(--color-primary);
}

.history-item {
  line-height: 1.4;
}

/* 인용문(Lee et al. ...) 자간을 좁힘 — 데탑/타블렛 (모바일은 아래에서 되돌림) */
.history-item p {
  letter-spacing: -0.04em;
}

.paper-title {
  letter-spacing: -1px;
}

.citation {
  font-size: 20px;
  line-height: 1.45;
  margin-top: 6px;
  color: var(--color-primary);
}

.paper-link {
  color: #b8cbb4;
  font-weight: 400;
  font-size: 16.5px; /* 한글 링크를 영문과 동일 크기로 (데탑/타블렛) */
  text-decoration: underline;
  word-break: break-all;
}

.paper-link:hover {
  color: var(--color-primary);
}

/* Bottom Divider */
.about-bottom-divider {
  width: 394px;
  height: 1px;
  background-color: var(--color-divider);
  margin: 160px auto 0 auto;
}

/* ==================== INQUIRY SECTION (의뢰문의) ==================== */
.inquiry-section {
  width: 100%;
  padding-top: 150px;
}

.inquiry-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.inquiry-box {
  width: 777px;
  height: 595px;
  background-color: #ecefeb;
  border: 1px solid var(--color-divider);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 130px;
  padding-bottom: 110px;
}

.inquiry-title {
  font-family: var(--font-serif);
  font-size: 40.5px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 128px;
}

.inquiry-email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  transform: translateY(-30px);
}

.inquiry-email-text {
  font-family: var(--font-sans);
  font-size: 43.5px;
  font-weight: 100;
  color: var(--color-primary);
  /* 밑줄을 border 대신 배경으로 그려서 글자 쪽으로 3px 당김 */
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 calc(100% - 3px);
  padding-bottom: 0;
  letter-spacing: 0.06em;
  user-select: text;
  cursor: text;
}

.copy-btn {
  width: 78px;
  height: 42px;
  border-radius: 10px;
  background-color: #afc2ab;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transform: translateY(8px);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.copy-btn:hover {
  background-color: var(--color-primary);
}

.copy-btn:active {
  transform: scale(0.96);
}

.inquiry-phone {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: 0.18em;
}

/* ==================== FOOTER SECTION ==================== */
.site-footer {
  width: 100%;
  margin-top: 160px;
  border-top: 1px solid var(--color-divider);
  background-color: #ffffff;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.footer-logo-wrap {
  width: 254px;
  height: 45px;
  flex-shrink: 0;
  margin-left: 20px;
  transform: translateY(-25px);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-text-info {
  width: 725px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  color: #9ab097;
  letter-spacing: 0.04em;
}

.footer-line {
  line-height: 1.4;
  margin: 0;
}

.footer-highlight-line {
  color: var(--color-primary);
}

/* Toast Alert Notification (Inside Inquiry Box directly below title) */
.inquiry-toast-alert {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid #c0d1bc;
  border-radius: 20px;
  padding: 8px 22px;
  display: inline-block;
  margin: -95px auto 55px auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 14px rgba(122, 146, 116, 0.15);
}

.inquiry-toast-alert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==================== ENGLISH PAGE FONT SCALING (85%) ==================== */
.en-page .nav-item {
  font-size: 15.5px;
}

.en-page .btn-inquiry {
  width: 93px;
}

.en-page .hero-subtitle {
  font-family: 'Lora', 'Libre Baskerville', 'Noto Serif KR', serif;
  font-size: 19.5px;
  font-weight: 500;
  color: var(--color-primary);
  opacity: 1;
}

.en-page .hero-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', 'Dutch 801 Rm BT', 'Times New Roman', serif;
  font-size: 63px;
  font-weight: 300;
  line-height: 75px;
  margin-bottom: 15px;
  transform: scaleY(0.9);
  transform-origin: left top;
  display: inline-block;
}

.en-page .hero-title .bold {
  font-weight: 600;
}

.en-page .desc-p {
  font-size: 19.5px;
  letter-spacing: -0.015em;
}
.en-page .portfolio-title {
  font-size: 56px;
  font-weight: 400;
  padding-right: 7px;
  transform: translateY(2px);
}

.en-page .process-title {
  font-size: 56px;
  font-weight: 400;
  padding-right: 7px;
  transform: translateY(2px);
}

.en-page .process-subtitle {
  padding-left: 7px;
  transform: translateY(10px);
}

.en-page .strength-title {
  font-size: 56px;
  font-weight: 400;
  padding-right: 7px;
  transform: translateY(4px);
}

.en-page .about-title {
  font-size: 56px;
  font-weight: 400;
  padding-right: 7px;
  transform: translateY(2px);
}

.en-page .portfolio-title,
.en-page .process-title,
.en-page .strength-title,
.en-page .about-title,
.en-page .inquiry-title {
  letter-spacing: 0.021em;
}

.en-page .card-title-tag,
.en-page .step-heading,
.en-page .step-num,
.en-page .step-title,
.en-page .strength-card-title,
.en-page .info-label,
.en-page .about-sub-heading,
.en-page .nav-item,
.copy-btn {
  font-family: 'Lora', 'Libre Baskerville', 'Noto Serif KR', serif;
}

.en-page .portfolio-subtitle {
  font-size: 19.5px;
  transform: translate(-5px, 11px);
}

.en-page .process-subtitle,
.en-page .strength-subtitle,
.en-page .about-subtitle {
  font-size: 19.5px;
}

.en-page .step-title {
  font-size: 25px;
}

.en-page .step-desc {
  font-size: 18px;
}

.en-page .strength-card-title {
  font-size: 23px;
}

.strength-card-title.tight-title {
  letter-spacing: -0.025em;
}

.en-page .strength-card-desc {
  font-size: 17.5px;
}

.en-page .info-label {
  font-size: 22.5px;
  transform: translateY(-3px);
}

.en-page .info-value {
  font-size: 18.5px;
}

.en-page .company-info-list {
  transform: translateY(-5px);
}

.en-page .profile-bio p,
.en-page .scope-list li,
.en-page .history-item {
  font-size: 18.5px;
}

/* 영문 프로필 소개를 7px 아래로 (데탑) */
.en-page .profile-bio {
  transform: translateY(7px);
}

.en-page .paper-link {
  font-size: 16.5px;
}

.en-page .inquiry-title {
  font-size: 34.5px;
}

.en-page .copy-btn {
  width: 91px;
}

.en-page .inquiry-email-text {
  font-size: 39px;
}

.en-page .footer-text-info {
  font-size: 13.5px;
  width: 780px;
  transform: translateX(-30px);
  white-space: nowrap;
}

/* ==================== 3-TIER RESPONSIVE MEDIA QUERIES ==================== */

/* Tier 2: Tablet & Medium Screens (<= 1180px) */
@media (max-width: 1180px) {
  .header-container,
  .portfolio-container,
  .process-container,
  .strength-container,
  .about-container,
  .inquiry-container,
  .footer-container {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-section {
    padding-top: 0 !important;
  }

  .hero-container {
    max-width: 100%;
    padding-top: 200px !important;
    padding-bottom: 10px !important;
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 80px !important;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 702px;
    height: auto;
    aspect-ratio: 702 / 551;
    margin: 0 auto !important;
    transform: none !important;
  }

  .hero-text-block,
  .hero-text-wrap {
    width: 100%;
    max-width: 702px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 100px !important;
    padding-right: 100px !important;
    transform: none !important;
    box-sizing: border-box;
  }

  .hero-text-block > *,
  .hero-text-wrap > * {
    margin-left: 0 !important;
    transform: none !important;
  }

  .hero-subtitle,
  .en-page .hero-subtitle,
  .hero-title {
    text-align: left !important;
  }

  .en-page .hero-title {
    text-align: left !important;
    transform: scaleY(0.9) !important;
    transform-origin: left top !important;
    display: inline-block !important;
  }

  .hero-description-block {
    justify-content: flex-start;
    text-align: left !important;
    transform: none !important;
    margin-left: 0 !important;
  }

  .hero-bottom-divider {
    margin-top: 80px !important;
  }

  .portfolio-section,
  .process-section,
  .strength-section,
  .about-section,
  .inquiry-section {
    padding-top: 90px !important;
  }

  .portfolio-header,
  .process-header,
  .strength-header,
  .about-header {
    margin-bottom: 50px !important;
  }

  .process-timeline-container {
    width: 100%;
    max-width: 100%;
  }

  .step-media,
  .step-text-content {
    width: calc((50% - 30px) * 0.875) !important;
    flex-shrink: 0;
  }

  .step-media {
    height: auto !important;
    aspect-ratio: 552 / 276 !important;
  }

  .process-step-row.step-left-img .step-media,
  .process-step-row.step-right-img .step-text-content {
    margin-left: auto !important;
    margin-right: 30px !important;
  }

  .process-step-row.step-left-img .step-text-content,
  .process-step-row.step-right-img .step-media {
    margin-left: 30px !important;
    margin-right: auto !important;
  }

  .step-heading {
    font-size: 27px !important;
    margin-bottom: 16px !important;
  }

  .step-desc {
    font-size: 19.5px !important;
    line-height: 1.5 !important;
  }

  .en-page .step-desc {
    font-size: 18.5px !important;
  }

  .timeline-dot-wrap {
    height: 106px !important;
  }

  /* Strength Cards 3-Row Layout (2 Top, 2 Middle, 1 Centered Bottom) */
  .strength-container {
    display: grid !important;
    grid-template-columns: repeat(2, 316px) !important;
    justify-content: center !important;
    gap: 70px 71px !important;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto !important;
  }

  .strength-row-top,
  .strength-row-bottom {
    display: contents !important;
  }

  .strength-row-divider {
    display: none !important;
  }

  .strength-card,
  .card-narrow,
  .card-wide,
  .card-bottom {
    width: 316px !important;
    max-width: 316px !important;
    box-sizing: border-box;
    position: relative;
  }

  /* Vertical line divider between Card 1 and Card 2 (Row 1) */
  .strength-row-top > .strength-card:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -35.5px;
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
  }

  /* Vertical line divider between Card 3 and Card 4 (Row 2) */
  .strength-row-top > .strength-card:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -35.5px;
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
  }

  /* About Section 1-Column Vertical Stacking in 1024px Mode */
  .about-container {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
  }

  .about-center-line {
    display: none !important;
  }

  .about-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 720px !important;
    text-align: left !important;
    padding-right: 0 !important;
    gap: 55px !important;
  }

  .about-logo-wrap {
    width: 186px !important;
    max-width: 186px !important;
    flex-shrink: 0 !important;
    margin-left: 60px !important;
    margin-top: 97px !important;
    transform: translateY(-7px) !important; /* 한글: 로고2 (기존 -25에서 18px 아래로) */
  }

  /* 영문: 로고2 (기존 -77에서 16px 아래로) */
  .en-page .about-logo-wrap {
    transform: translateY(-61px) !important;
  }

  .about-logo-img {
    width: 100% !important;
    max-width: 186px !important;
    height: auto !important;
    display: block !important;
  }

  .company-info-list {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-top: 15px !important;
    gap: 22.4px !important;
    transform: none !important;
    text-align: left !important;
  }

  /* 영문: 회사소개 텍스트 전체를 20px 왼쪽으로 */
  .en-page .company-info-list {
    transform: translateX(-20px) !important;
  }

  .info-row {
    justify-content: flex-start !important;
  }

  .about-right {
    display: grid !important;
    grid-template-columns: 256px 1fr !important;
    gap: 0 40px !important;
    align-content: start !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 720px !important;
    margin-top: 80px !important;
  }

  .profile-photo-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 256px !important;
    height: 310px !important;
    max-width: 256px !important;
    margin-left: -141px !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important; /* 프로필 사진과 아래 내용 간격 5px 추가 */
  }

  .profile-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .profile-bio {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 256px !important;
    max-width: 256px !important;
    margin-left: -141px !important;
    margin-top: -10px !important;
    text-align: left !important;
  }

  .en-page .profile-bio {
    margin-top: -20px !important;
    letter-spacing: -0.025em !important;
    transform: translateY(7px) !important; /* 영문 프로필 소개 7px 아래로 */
  }

  /* 타블렛에서만 줄바꿈 표시 (Field Photography 한 줄 유지) */
  .tablet-br {
    display: inline !important;
  }

  .about-right .about-sub-block {
    grid-column: 2 !important;
    width: calc(170% + 30px) !important;
    max-width: calc(170% + 30px) !important;
    text-align: left !important;
    margin-left: -110px !important;
    transform: translateY(-10px) !important;
  }

  .about-sub-block:first-of-type {
    margin-bottom: 0 !important;
  }

  .about-sub-block:last-of-type {
    transform: translateY(-60px) !important;
  }

  .about-sub-heading {
    margin-bottom: 17.85px !important;
  }

  .scope-list {
    gap: 14.45px !important;
    line-height: 1.4 !important;
  }

  .history-list {
    gap: 24.65px !important;
    line-height: 1.4 !important;
  }

  .scope-list li,
  .history-list li {
    line-height: 1.4 !important;
  }

  .hero-bottom-divider {
    margin-top: 100px !important;
  }

  .about-bottom-divider {
    margin-top: 10px !important;
  }

  .inquiry-box {
    width: 637px !important;
    max-width: 637px !important;
    height: 505px !important;
    margin: 0 auto !important;
    padding-top: 110px !important;
    padding-bottom: 20px !important;
  }

  .inquiry-email-row {
    transform: translateY(-70px) !important;
  }

  .inquiry-email-text {
    font-size: 43.9px !important;
  }

  .copy-btn {
    transform: translateY(11px) !important;
  }

  .inquiry-phone {
    transform: translateY(-60px) !important;
  }

  .hero-text-wrap {
    transform: translateX(65px) !important;
  }

  .en-page .hero-text-wrap {
    transform: translateX(40px) !important;
  }

  .hero-title {
    transform: translateX(-3px) !important;
  }

  .portfolio-bottom-divider,
  .process-bottom-divider,
  .strength-bottom-divider {
    margin-top: 130px !important;
  }

  .portfolio-section,
  .process-section,
  .strength-section,
  .about-section {
    padding-top: 80px !important;
  }

  .inquiry-section {
    padding-top: 160px !important;
  }

  .strength-card:last-child,
  .card-wide:last-child {
    grid-column: 1 !important;
    justify-self: flex-start !important;
    width: 316px !important;
    max-width: 316px !important;
    margin: 0 !important;
  }

  .strength-media,
  .strength-media-wide {
    width: 316px !important;
    height: 210px !important;
  }

  .strength-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .nav-menu {
    gap: 12px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 88.2% !important;
    max-width: 88.2% !important;
    margin: 0 auto !important;
    gap: 24px;
  }

  .portfolio-card {
    width: 100%;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .process-step {
    width: calc(50% - 10px);
    min-width: 260px;
  }

  .strength-cards-wrap {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .strength-card,
  .card-narrow,
  .card-wide,
  .card-bottom {
    width: calc(50% - 12px);
    min-width: 260px;
  }

  .about-center-line {
    opacity: 0.3;
  }

  .inquiry-box {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px;
  }

  .inquiry-email-text {
    font-size: 32px;
  }

  .en-page .inquiry-email-text {
    font-size: 30px;
  }

  .site-footer {
    margin-top: 150px !important;
  }

  .footer-container {
    height: auto !important;
    padding-top: 24px !important; /* 상단 여백 6px 축소 */
    padding-bottom: 34px !important; /* 하단 여백 6px 축소 */
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
  }

  /* 푸터 텍스트 줄간격 약 2px 축소 */
  .footer-line {
    line-height: 1.27 !important;
  }

  .footer-logo-wrap {
    transform: translateY(-7px) !important; /* 로고1 8px 아래로 (푸터 좁게) */
    margin: 15px auto 0 auto !important;
  }

  .footer-text-info,
  .en-page .footer-text-info {
    width: 100% !important;
    margin-top: 10px !important;
    transform: none !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

/* Tier 3: Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  section, main, footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-section,
  .portfolio-section,
  .process-section,
  .strength-section,
  .about-section,
  .inquiry-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    box-sizing: border-box !important;
  }

  .hero-container,
  .portfolio-container,
  .process-container,
  .strength-container,
  .about-container,
  .inquiry-container,
  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .header-container {
    position: relative !important;
    padding: 6px 15px 13px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .logo-area {
    display: flex !important;
    align-items: center !important;
    margin-left: 0 !important;
    transform: translateX(-7px) !important;
  }

  .logo-img {
    height: 41.2px !important;
    transform: scale(1.03) !important;
    transform-origin: left center !important;
  }

  .btn-inquiry {
    position: absolute !important;
    top: 7px !important;
    right: 15px !important;
    margin: 0 !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: center !important;
    z-index: 10 !important;
  }

  .lang-toggle {
    position: absolute !important;
    top: 11px !important;
    right: 73px !important;
    margin: 0 !important;
    width: 65px !important;
    height: 25.5px !important;
    transform: scale(0.85) !important;
    transform-origin: center right !important;
    z-index: 10 !important;
  }

  .en-page .btn-inquiry {
    top: 8px !important;
    right: 13px !important;
    width: 74px !important;
    min-width: 74px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
    border-radius: 11px !important;
  }

  .en-page .lang-toggle {
    right: 95px !important;
  }

  .lang-btn {
    font-size: 11.5px !important;
  }

  .nav-menu {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    margin-top: 10px !important;
    flex-wrap: wrap !important;
  }

  .en-page .nav-menu {
    gap: 7px !important;
    flex-wrap: nowrap !important;
  }

  .divider {
    height: 11px !important;
    width: 1px !important;
    background-color: var(--color-primary) !important;
    font-weight: 300 !important;
    -webkit-text-stroke: 0 !important;
    transform: none !important;
    flex-shrink: 0 !important;
  }

  .nav-item {
    font-size: 16px !important;
    font-weight: 400 !important;
    transform: none !important;
    text-decoration: none !important;
  }

  .nav-item:hover,
  .en-page .nav-item:hover {
    transform: none !important;
    opacity: 1 !important;
  }

  .nav-item.active {
    font-weight: 900 !important;
    transform: none !important;
    text-decoration: none !important;
    color: var(--color-primary) !important;
  }

  .en-page .nav-item,
  .en-page .nav-item.active {
    font-size: 14px !important;
  }

  .en-page .nav-item.active {
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    color: var(--color-primary) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0.3px 0 0 var(--color-primary), -0.3px 0 0 var(--color-primary) !important;
    transform: none !important;
  }

  .hero-section {
    padding-top: 0 !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 100px !important;
    padding-top: 192px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-image-wrap {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 702 / 551 !important;
    margin: 0 auto !important;
    transform: none !important;
    flex-shrink: 1 !important;
  }

  .hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .hero-text-wrap,
  .en-page .hero-text-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
    align-self: stretch !important;
  }

  .hero-container,
  .portfolio-container,
  .process-container,
  .strength-container,
  .about-container,
  .inquiry-container {
    padding-bottom: 0 !important;
  }

  .hero-bottom-divider,
  .portfolio-bottom-divider,
  .process-bottom-divider,
  .strength-bottom-divider,
  .about-bottom-divider {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 110px !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .hero-subtitle,
  .en-page .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  .hero-title,
  .en-page .hero-title {
    font-size: 36px !important;
    line-height: 1.25 !important;
    margin-bottom: 60px !important;
    margin-left: -3px !important;
    margin-right: -3px !important;
    width: calc(100% + 6px) !important;
    max-width: calc(100% + 6px) !important;
    transform: none !important;
  }

  .en-page .hero-title {
    font-size: 34px !important;
  }

  .hero-description-block {
    flex-direction: column;
    gap: 20px;
  }

  .desc-item {
    width: 100%;
  }

  .portfolio-header,
  .process-header,
  .strength-header,
  .about-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 70px !important;
    gap: 3px !important;
  }

  .portfolio-title,
  .process-title,
  .strength-title,
  .about-title,
  .en-page .portfolio-title,
  .en-page .process-title,
  .en-page .strength-title,
  .en-page .about-title {
    width: 100%;
    text-align: center !important;
    padding-right: 0 !important;
    font-size: 34px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    transform: none !important;
  }

  .portfolio-subtitle,
  .process-subtitle,
  .strength-subtitle,
  .about-subtitle,
  .en-page .portfolio-subtitle,
  .en-page .process-subtitle,
  .en-page .strength-subtitle,
  .en-page .about-subtitle {
    width: 100%;
    text-align: center !important;
    padding-left: 0 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    transform: none !important;
    font-size: 15.5px !important;
  }

  .portfolio-header-divider,
  .process-header-divider,
  .strength-header-divider,
  .about-header-divider {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .portfolio-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 380 / 224 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .modal-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .modal-img-viewport {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vw !important;
    max-height: 100vw !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid #3d5236 !important;
    box-sizing: border-box !important;
    background-color: #f7f9f6 !important;
    touch-action: none;
    cursor: grab;
  }

  .modal-img-viewport:active {
    cursor: grabbing;
  }

  .modal-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform-origin: center center !important;
    will-change: transform;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .modal-caption {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    margin: 12px auto 0 auto !important;
  }

  /* Process Timeline Section Mobile Rules */
  .timeline-central-line,
  .timeline-dot {
    display: none !important;
  }

  .timeline-dot-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    margin: -15px 0 35px 0 !important;
    padding: 0 !important;
  }

  .mobile-step-arrow {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--color-primary) !important;
    opacity: 0.35 !important;
  }

  .mobile-step-arrow svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
  }

  .process-timeline-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .process-step-row,
  .process-step-row.step-left-img,
  .process-step-row.step-right-img {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 50px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .process-step-row:last-child {
    margin-bottom: 0 !important;
  }

  .process-step-row.step-left-img .step-media,
  .process-step-row.step-right-img .step-media,
  .process-step-row.step-left-img .step-text-content,
  .process-step-row.step-right-img .step-text-content,
  .step-media,
  .step-text-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .step-media {
    height: auto !important;
    aspect-ratio: 380 / 190 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    order: 1 !important;
    overflow: hidden !important;
    border: 1px solid var(--color-primary) !important;
    align-self: stretch !important;
  }

  .step-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .step-text-content,
  .step-text-content.text-align-left,
  .step-text-content.text-align-right {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
    order: 2 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .text-align-left,
  .text-align-right,
  .step-heading,
  .step-num,
  .step-title,
  .step-desc {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .step-heading {
    font-size: 21px !important;
    margin-bottom: 10px !important;
  }

  .step-num {
    display: inline-block !important;
    font-size: 26px !important;
    margin-right: 8px !important;
    width: auto !important;
    letter-spacing: -0.04em !important;
  }

  .step-title {
    display: inline !important;
    width: auto !important;
  }

  .step-desc {
    font-size: 19px !important;
    line-height: 1.6 !important;
  }

  .step-5-content,
  .step-5-content .step-heading,
  .step-5-content .step-title,
  .step-5-content .step-desc {
    letter-spacing: -0.05em !important;
  }

  /* 한글 작업과정: 단계번호-제목 사이 공백 제거(font-size:0) + 제목 줄간격 +1px */
  body:not(.en-page) .step-heading {
    font-size: 0 !important;
    line-height: 1.2 !important;
  }
  /* 단계번호 1px 축소 + 제목과의 간격 축소 */
  body:not(.en-page) .step-num {
    font-size: 25px !important;
    margin-right: 3px !important;
  }
  body:not(.en-page) .step-title {
    font-size: 21px !important;
  }

  .timeline-dot-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    margin: -15px 0 35px 0 !important;
    padding: 0 !important;
  }

  .mobile-step-arrow {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #7a9274 !important;
    opacity: 0.6 !important;
  }

  .mobile-step-arrow svg {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
  }

  /* Strength Section Mobile */
  .strength-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    gap: 70px !important;
  }

  .strength-row-top,
  .strength-row-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    gap: 70px !important;
  }

  .strength-row-bottom {
    margin-top: 0 !important;
  }

  .strength-row-divider {
    display: none !important;
  }

  .strength-card,
  .strength-card.card-narrow,
  .strength-card.card-wide,
  .strength-card.card-bottom,
  .card-narrow,
  .card-wide,
  .card-bottom,
  .strength-card:last-child,
  .card-wide:last-child {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
  }

  .strength-card::after,
  .strength-card::before,
  .strength-row-top > .strength-card:first-child::after,
  .strength-row-top > .strength-card:last-child::after,
  .strength-row-bottom > .strength-card:first-child::after,
  .strength-row-bottom > .strength-card:last-child::after {
    display: none !important;
    content: none !important;
  }

  .strength-card-title {
    font-size: 23px !important;
    line-height: 1.35 !important;
    margin-bottom: 26px !important;
    text-align: center !important;
    width: 100% !important;
    word-break: keep-all !important;
  }

  .mobile-br,
  .strength-card-title br {
    display: inline !important;
  }

  /* Desktop-only line breaks: hidden on mobile so subtitles stay on one line */
  .desktop-br,
  .tablet-br,
  .footer-pipe,
  .portfolio-subtitle br,
  .process-subtitle br,
  .strength-subtitle br,
  .about-subtitle br {
    display: none !important;
  }

  .strength-media,
  .media-narrow,
  .media-wide,
  .media-bottom,
  .strength-media-wide {
    width: 316px !important;
    max-width: 100% !important;
    height: 224px !important;
    margin: 0 auto 20px auto !important;
    box-sizing: border-box !important;
    align-self: center !important;
    overflow: hidden !important;
    border: 1px solid #7a9274 !important;
  }

  .media-bottom {
    height: 210px !important;
  }

  .strength-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .strength-card-desc {
    font-size: 19px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .strength-card-desc br {
    display: none !important;
  }

  /* About Section Mobile */
  .about-center-line {
    display: none !important;
  }

  .about-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    gap: 55px !important;
  }

  .about-left,
  .about-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .about-logo-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 112px !important;
    margin: 0 auto -2px auto !important;
    transform: none !important;
  }

  .about-logo-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .company-info-list,
  .en-page .company-info-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    transform: translateX(-3px) !important;
    gap: 16px !important;
    margin: 0 auto !important;
  }

  .info-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
    width: 100% !important;
    gap: 6px !important;
    transform: none !important;
    flex-wrap: wrap !important;
  }

  .info-row.location-row {
    transform: translateX(3px) !important;
  }

  .info-row.desktop-only-row,
  .desktop-only-row {
    display: none !important;
  }

  .info-row.mobile-only-row,
  .mobile-only-row {
    display: flex !important;
  }

  .info-divider {
    font-family: var(--font-sans) !important;
    font-size: 18.5px !important;
    font-weight: 300 !important;
    color: var(--color-primary) !important;
    margin: 0 4px !important;
    line-height: 1.55 !important;
    align-self: flex-start !important;
  }

  .info-label,
  .en-page .info-label {
    font-family: var(--font-serif) !important;
    font-size: 19.5px !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    text-align: right !important;
    width: auto !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    line-height: 1.55 !important;
  }

  .info-row.mobile-only-row .info-label {
    transform: translateY(1px) !important;
  }

  .info-row.biz-num-row .info-label {
    transform: translateY(1px) !important;
  }

  .info-row.location-row .info-label {
    transform: translateY(-2px) !important;
  }

  .info-row.cert-row .info-label {
    transform: translateY(2px) !important;
  }

  .info-value,
  .en-page .info-value {
    font-family: var(--font-sans) !important;
    font-size: 18.5px !important;
    font-weight: 300 !important;
    color: var(--color-primary) !important;
    text-align: left !important;
    width: auto !important;
    transform: none !important;
    white-space: normal !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  .cert-highlight {
    display: inline-block !important;
    margin: 10px 0 !important;
    font-weight: inherit !important;
  }

  .tight-lines {
    display: inline-block !important;
    line-height: 1.25 !important;
  }

  .profile-photo-wrap {
    width: 138px !important;
    height: 168px !important;
    margin: 0 auto 9px auto !important;
    border: 1px solid var(--color-primary) !important;
    overflow: hidden !important;
    background-color: #f7f9f6 !important;
    align-self: center !important;
  }

  .profile-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .profile-bio {
    font-family: var(--font-sans) !important;
    font-size: clamp(16px, 4.6vw, 17.5px) !important;
    font-weight: 300 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.035em !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 45px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
  }

  .profile-bio p {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .about-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    transform: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  .about-right .about-sub-block,
  .about-sub-block,
  .about-sub-block:first-of-type,
  .about-sub-block:last-of-type,
  .about-sub-block:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 45px auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .about-right .about-sub-block:last-child,
  .about-sub-block:last-child,
  .about-sub-block:last-of-type {
    margin-bottom: 0 !important;
  }

  .about-sub-heading {
    font-family: var(--font-serif) !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 16px auto !important;
    transform: none !important;
  }

  .scope-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    font-family: var(--font-sans) !important;
    font-size: 18.5px !important;
    font-weight: 300 !important;
    color: var(--color-primary) !important;
    line-height: 1.55 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
    transform: none !important;
  }

  .scope-list li {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    line-height: 1.55 !important;
  }

  .scope-list li:nth-child(1),
  .scope-map {
    transform: translateX(32px) !important;
  }

  .scope-list li:nth-child(2),
  .scope-editorial {
    transform: translateX(-10px) !important;
  }

  .scope-list li:nth-child(3),
  .scope-storytelling {
    transform: translateX(-8px) !important;
  }

  .scope-list li:nth-child(4),
  .scope-photo {
    transform: translateX(33px) !important;
  }

  /* M: 인증·등록 — 라벨 한 줄, 값은 아래 들여쓰기 (기기 무관) */
  body:not(.en-page) .info-row.cert-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 24px !important;
  }
  body:not(.en-page) .info-row.cert-row .info-label {
    transform: none !important;
  }
  body:not(.en-page) .info-row.cert-row .info-value {
    transform: none !important;
    padding-left: 40px !important;
  }

  /* 한글 업무범위: 4개 항목 모두 동일 왼쪽 정렬(x40), 이어지는 줄도 같은 시작점 */
  body:not(.en-page) .scope-list li {
    display: block !important;
    white-space: normal !important;
    text-align: left !important;
    transform: translateX(15px) !important;
    line-height: 1.5 !important;
  }

  /* ===== 영문 모바일 전용 (타블렛 누수 이기게 .en-page + !important) ===== */
  /* task5: 로고2 타블렛 -61px 누수 제거 + about와 50px, 아래 텍스트와 50px */
  .en-page .about-logo-wrap {
    transform: none !important;
    margin-top: -20px !important;
    margin-bottom: 50px !important;
  }
  .en-page .about-left {
    gap: 0 !important;
  }
  /* task6: 회사명 뒤 / 제거 */
  .en-page .info-row.mobile-only-row .info-divider {
    display: none !important;
  }
  /* task7: 회사소개 전체 좌측정렬 */
  .en-page .company-info-list {
    align-items: flex-start !important;
    text-align: left !important;
    transform: none !important;
    padding-left: 26px !important;
  }
  .en-page .company-info-list .info-row {
    justify-content: flex-start !important;
    transform: none !important;
  }
  .en-page .company-info-list .info-label,
  .en-page .company-info-list .info-value {
    text-align: left !important;
    transform: none !important;
  }
  /* task8: 내사진과 소개글 간격. 타블렛 규칙(margin-top -20, transform 7) 누수 리셋 */
  .en-page .profile-bio {
    margin-top: 0 !important;
    transform: none !important;
  }
  .en-page .profile-photo-wrap {
    margin-bottom: 8px !important;
  }
  /* task9: 소개글 줄바꿈 동작 위해 block + 줄바꿈 허용(짤림 방지) */
  .en-page .profile-bio p {
    display: block !important;
    white-space: normal !important;
    text-align: center !important;
  }
  /* task10: 스콥 전부 동일 왼쪽 정렬 + 이어지는 줄 간격 좁힘 (body.en-page로 인라인 이김) */
  body.en-page .scope-list li {
    display: block !important;
    white-space: normal !important;
    text-align: left !important;
    transform: translateX(1px) !important;
    line-height: 1.3 !important;
  }

  .history-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 20px !important;
    font-family: var(--font-sans) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: var(--color-primary) !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .history-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .history-item p {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    word-break: keep-all !important;
    line-height: 1.38 !important;
    letter-spacing: normal !important; /* 데탑/타블렛 자간 좁힘을 모바일에선 원복 */
  }

  .paper-link {
    text-align: center !important;
    display: block !important;
    font-size: 14.5px !important;
    letter-spacing: -0.06em !important;
    word-break: break-all !important;
    max-width: 100% !important;
    margin: 4px auto 0 auto !important;
  }

  /* 제작이력 링크 자간 벌리기 (모바일 한영공통, 인라인보다 우선) */
  .history-item .paper-link {
    letter-spacing: 0.05em !important;
  }

  .inquiry-box {
    height: 267px !important;
    width: calc(100% - 80px) !important;
    margin: 0 auto !important;
    padding: 58px 16px;
    border-radius: 0 !important;
  }

  .inquiry-title,
  .en-page .inquiry-title {
    font-size: 26px !important;
    margin-bottom: 28px !important;
  }

  .inquiry-email-row {
    flex-direction: row !important; /* 카피버튼을 이메일 오른쪽에 */
    gap: 8px;
    align-items: center;
    justify-content: center;
    transform: none !important;
    margin-bottom: 12px; /* 이메일-전화 간격 60% (20->12) */
  }

  /* 의뢰문의 박스: 토스트 알림을 레이아웃에서 빼내 간격 제어 */
  .inquiry-box {
    position: relative !important;
  }

  .inquiry-toast-alert {
    position: absolute !important;
    top: 62px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: fit-content !important;
    max-width: 90% !important;
  }

  .inquiry-email-text,
  .en-page .inquiry-email-text {
    font-size: 24px !important; /* 기존 22px에서 2px 키움 */
    letter-spacing: 0.028em; /* 기존 0.02em의 140% */
    white-space: nowrap;
    text-align: center;
  }

  .copy-btn {
    transform: none !important;
    width: 49px !important;
    height: 36px;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* 영문: 카피버튼 좌우 3px씩(총 6px) 축소 */
  .en-page .copy-btn {
    width: 70px !important;
  }

  .inquiry-phone {
    font-size: 16px;
    transform: none !important; /* 타블렛용 -60px 끌어올림을 모바일에서 해제 (겹침 방지) */
  }

  .footer-container {
    padding: 9px 16px 28px 16px !important; /* 상단 15px·하단 6px 컷 (타블렛 24/34 누수 이기게 !important) */
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  /* 푸터 로고1을 현재의 80% 크기로 (254x45 -> 203x36) */
  .footer-logo-wrap {
    width: 203px !important;
    height: 36px !important;
    transform: translateY(-3px) !important; /* 로고1 4px 아래로 (기존 -7 -> -3) */
  }

  .footer-text-info,
  .en-page .footer-text-info {
    font-size: 12px;
    width: 100%;
    transform: none;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }

  /* ===== M 한글: 회사정보 표 정렬 (라벨 | 값 2열 그리드) ===== */
  body:not(.en-page) .company-info-list {
    display: grid !important;
    grid-template-columns: max-content minmax(0, 1fr) !important;
    justify-content: center !important;
    align-items: baseline !important;
    column-gap: 4px !important;
    row-gap: 16px !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  body:not(.en-page) .company-info-list .info-label {
    font-size: 18px !important;
  }

  /* 데탑 전용 2줄(상호/대표)은 숨기고, 모바일 합침줄·표 대상 행은 셀에 직접 배치 */
  body:not(.en-page) .company-info-list .info-row.desktop-only-row {
    display: none !important;
  }

  body:not(.en-page) .company-info-list .info-row.mobile-only-row,
  body:not(.en-page) .company-info-list .info-row.biz-num-row,
  body:not(.en-page) .company-info-list .info-row.location-row,
  body:not(.en-page) .company-info-list .info-row.cert-row {
    display: contents !important;
  }

  body:not(.en-page) .company-info-list .info-row.mobile-only-row .info-label,
  body:not(.en-page) .company-info-list .info-row.biz-num-row .info-label,
  body:not(.en-page) .company-info-list .info-row.location-row .info-label,
  body:not(.en-page) .company-info-list .info-row.cert-row .info-label {
    text-align: right !important;
    transform: none !important;
    white-space: nowrap !important;
  }

  body:not(.en-page) .company-info-list .info-row.mobile-only-row .info-value,
  body:not(.en-page) .company-info-list .info-row.biz-num-row .info-value,
  body:not(.en-page) .company-info-list .info-row.location-row .info-value,
  body:not(.en-page) .company-info-list .info-row.cert-row .info-value {
    text-align: left !important;
    transform: none !important;
  }

  /* cert 값: 들여쓰기 제거 + 강제 줄바꿈 해제 */
  body:not(.en-page) .company-info-list .info-row.cert-row .info-value {
    padding-left: 0 !important;
  }

  body:not(.en-page) .company-info-list .info-row.cert-row .info-value .tight-lines br {
    display: none !important;
  }

  body:not(.en-page) .company-info-list .inline-label {
    font-family: var(--font-serif) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--color-primary) !important;
  }

  body:not(.en-page) .company-info-list .info-divider {
    display: inline !important;
    margin: 0 4px !important;
  }

  body:not(.en-page) .company-info-list .tight-lines {
    display: block !important;
  }

  /* ===== M 한글: 업무범위 — 행잉 인덴트 + 중앙 배치 ===== */
  body:not(.en-page) .scope-list {
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    text-align: left !important;
    transform: none !important;
  }

  body:not(.en-page) .scope-list li,
  body:not(.en-page) .scope-list li:nth-child(1),
  body:not(.en-page) .scope-list li:nth-child(2),
  body:not(.en-page) .scope-list li:nth-child(3),
  body:not(.en-page) .scope-list li:nth-child(4) {
    display: block !important;
    width: auto !important;
    margin: 0 0 8px 0 !important;
    padding-left: 4.8em !important;
    text-indent: -4.8em !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: keep-all !important;
    text-wrap: wrap !important;
    transform: none !important;
    line-height: 1.5 !important;
  }

  body:not(.en-page) .scope-list li:last-child {
    margin-bottom: 0 !important;
  }

  body:not(.en-page) .scope-list .mobile-br {
    display: none !important;
  }

  body:not(.en-page) .scope-list .bold-prefix {
    white-space: nowrap !important;
  }

  /* M: 의뢰문의 섹션·푸터 위 여백 */
  .inquiry-section {
    padding-top: 80px !important;
  }

  .site-footer {
    margin-top: 75px !important;
  }

  /* M: 의뢰문의 박스 — 내용이 박스를 넘지 않도록 */
  .inquiry-box {
    width: calc(100% - 40px) !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  .inquiry-email-row,
  .en-page .inquiry-email-row {
    flex-wrap: wrap !important;
    max-width: 100% !important;
    padding: 0 !important;
    row-gap: 2px !important;
    column-gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .inquiry-email-text,
  .en-page .inquiry-email-text {
    font-size: clamp(15px, 5.2vw, 24px) !important;
    max-width: 100% !important;
  }

  .inquiry-phone,
  .en-page .inquiry-phone {
    font-size: clamp(13px, 4.2vw, 18px) !important;
    max-width: 100% !important;
  }

  .copy-btn,
  .en-page .copy-btn {
    flex-shrink: 0 !important;
  }

  /* M: 푸터 로고 90% 축소 (한·영 공통, 203×36 → 183×32.4) */
  .footer-logo-wrap,
  .en-page .footer-logo-wrap {
    width: 183px !important;
    height: 32.4px !important;
  }
}

/* 전화·자동링크 색·밑줄 제거 (전 화면 공통) */
.inquiry-phone a,
.footer-line a,
.footer-text-info a {
  color: inherit !important;
  text-decoration: none !important;
}
