@charset "utf-8";

/* =============================================
   NEIGE STUDIO THEME - Pixel-Perfect CSS
   Based on Figma Design Spec
   ============================================= */

/* === CSS Custom Properties === */
:root {
  /* Colors */
  --bg-dark: #131313;
  --bg-footer: #1d1d1b;
  --bg-light: #f0eee4;
  --color-orange: #ff7c06;
  --color-orange-heading: #f18d1b;
  --color-white: #ffffff;
  --color-gray-sub: #8d8d8d;
  --color-gray-placeholder: #9f9f9f;
  --color-gray-copyright: #666666;
  --color-black: #000000;

  /* Gradients */
  --gradient-cta: linear-gradient(-39.63deg, rgb(255,95,42) 40.48%, rgb(255,124,6) 88.82%);
  --gradient-tab-active: linear-gradient(93.31deg, rgb(241,139,26) 0.68%, rgb(254,87,6) 92.97%);
  --gradient-location-bar: linear-gradient(153.6deg, rgb(226,96,34) 9.67%, rgb(255,166,93) 93.28%);
  --gradient-icon-circle: linear-gradient(91.2deg, rgb(253,227,204) 5.99%, rgb(255,218,167) 93.15%);
  --gradient-glass: linear-gradient(151.1deg, rgba(84,79,79,0.2) 15.7%, rgba(84,79,79,0.05) 92.43%);
  --gradient-submit: linear-gradient(-6.81deg, rgb(255,95,42) 40.48%, rgb(255,124,6) 88.82%);

  /* Glass Morphism */
  --glass-border: 1px solid rgba(255,255,255,0.25);
  --glass-blur: blur(20px);
  --glass-shadow: 0px 4px 24px rgba(0,0,0,0.2);

  /* Typography */
  --font-title: 'Cormorant Garamond', serif;
  --font-nav: 'Montserrat', sans-serif;
  --font-body: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --page-width: 1920px;
  --content-width: 1720px;
  --content-padding: 100px;
  --header-content-width: 1686px;
  --header-margin: 117px;
  --footer-padding-x: 230px;
  --footer-padding-y: 118px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-white); background: var(--bg-dark); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; word-break: keep-all; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-body); margin: 0; padding: 0; }
ul, ol, li { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); outline: none; }
legend { position: absolute; font-size: 0; line-height: 0; text-indent: -9999em; overflow: hidden; }
hr { display: none; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

/* 접근성 */
.sound_only { display: inline-block !important; position: absolute; top: 0; left: 0; width: 0; height: 0; margin: 0 !important; padding: 0 !important; font-size: 0; line-height: 0; border: 0 !important; overflow: hidden !important; }
#skip_to_container a { z-index: 100000; position: absolute; top: 0; left: 0; width: 1px; height: 1px; font-size: 0; line-height: 0; overflow: hidden; }
#skip_to_container a:focus, #skip_to_container a:active { width: 100%; height: 60px; background: #21272e; color: #fff; font-size: 1.5em; font-weight: bold; text-align: center; text-decoration: none; line-height: 60px; }

/* Glass Morphism class */
.glass {
  background: var(--gradient-glass);
  border: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

/* === 팝업레이어 (영카트5 기본) === */
#hd_pop { z-index: 1000; position: relative; margin: 0 auto; height: 0; }
#hd_pop h2 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
.hd_pops { position: absolute; border: 1px solid #e9e9e9; background: #fff; }
.hd_pops img { max-width: 100%; }
.hd_pops_footer { padding: 0; background: #000; color: #fff; text-align: left; position: relative; }
.hd_pops_footer:after { display: block; visibility: hidden; clear: both; content: ""; }
.hd_pops_footer button { padding: 10px; border: 0; color: #fff; }
.hd_pops_footer .hd_pops_reject { background: #000; text-align: left; }
.hd_pops_footer .hd_pops_close { background: #393939; position: absolute; top: 0; right: 0; }

/* Mobile-only / PC-only */
.mo-only { display: none !important; }
.pc-only { display: inline; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 20px;
  background: transparent;
  transition: background 0.3s;
}
.site-header.is-scrolled {
  background: rgba(19, 19, 19, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1686px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 346px;
}
.logo {
  display: block;
  width: 239px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo img {
  height: 25px;
  width: auto;
}
.gnb {
  display: flex;
  gap: 40px;
  align-items: center;
}
.gnb > a,
.gnb .gnb-link {
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  transition: color 0.2s, font-weight 0.2s;
  white-space: nowrap;
}
.gnb > a:hover,
.gnb > a.active,
.gnb .gnb-link:hover,
.gnb .gnb-link.active {
  font-weight: 700;
}
.gnb .gnb-link.active {
  position: relative;
}
.gnb .gnb-link.active::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* === PORTFOLIO Dropdown === */
.gnb-item {
  position: relative;
  display: flex;
  align-items: center;
}
.gnb-item .gnb-link {
  display: inline-block;
  cursor: pointer;
}
.gnb-dropdown {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  background: var(--color-white);
  border-radius: 0;
  padding: 28px 19px;
  z-index: 200;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  pointer-events: none;
}
.gnb-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  width: calc(100% + 40px);
  height: 40px;
}
.gnb-item:hover .gnb-dropdown,
.gnb-item.is-open .gnb-dropdown {
  max-height: 200px;
  opacity: 1;
  padding-top: 28px;
  padding-bottom: 28px;
  pointer-events: auto;
  text-align: center;
}
.gnb-dropdown a {
  display: block;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 20px;
  transition: color 0.2s;
  white-space: nowrap;
}
.gnb-dropdown a + a {
  margin-top: 20px;
}
.gnb-dropdown a:hover {
  color: var(--color-orange);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  padding: 10px 24px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
  border-radius: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }
.header-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}
/* 햄버거 메뉴 토글 */
#gnb_toggle {
  display: none;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
}
#gnb_toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
#gnb_toggle span:nth-child(1),
#gnb_toggle span:nth-child(3) {
  width: 18px;
}


/* 영카트5 기본 헤더 요소 숨김 */
#hd_h1 { position: absolute; font-size: 0; line-height: 0; overflow: hidden; }
.hd_login, .hd_sch_wr, #hd_right { display: none; }

/* Studio 페이지 헤더 색 전환 */
body.page-light .site-header .logo img { filter: brightness(0); }
body.page-light .site-header .gnb a { color: var(--color-black); }
body.page-light .site-header .header-line { background: rgba(0, 0, 0, 0.2); }
body.page-light .site-header #gnb_toggle span { background: var(--color-black); }
body.page-light .site-header .gnb .gnb-link.active::after { background-color: var(--color-black); }
body.page-light .site-header.is-scrolled { background: rgba(255,255,255,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  background: var(--bg-footer);
  padding: 120px 0;
}
.footer-scroll-top {
  position: absolute;
  top: -28px;
  right: var(--footer-padding-x);
  z-index: 10;
}
.footer-scroll-top button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.footer-scroll-top button:hover {
  transform: translateY(-2px);
}
.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--footer-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 75px;
}
.footer-logo {
  width: 205px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-info {
  max-width: 598px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.info-row {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-sub);
  line-height: 1.5;
}
.info-row .sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: var(--color-gray-sub);
  margin: 0 15px;
  vertical-align: middle;
}
.footer-right {
  max-width: 333px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-sns {
  display: block;
  width: 26px;
  height: 26px;
  opacity: 0.7;
}
.footer-sns img { width: 100%; height: 100%; }
.footer-copyright {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-copyright);
  line-height: 27px;
}

/* =============================================
   FLOATING SIDE BUTTONS
   ============================================= */
.floating-side {
  position: fixed;
  right: 0;
  top: 503px;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}
.float-arrow {
  pointer-events: auto;
}
.float-arrow {
  width: 64px;
  height: 64px;
  border-radius: 16px 0 0 16px;
  background: var(--color-orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.float-arrow:hover { background: #e06800; }
.float-arrow svg {
  transition: transform 0.3s;
}
.floating-side.is-open .float-arrow svg {
  transform: rotate(180deg);
}
.float-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 16px 12px 12px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
}
.floating-side.is-open .float-buttons {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.float-buttons a {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  background: #464646;
  border-radius: 44px;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 4.77px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.float-buttons a:hover { transform: scale(1.08); }
.float-buttons a:nth-child(2) {
  background: linear-gradient(180deg, #ff7c06 16.48%, #ff5506 221.59%);
}
.float-buttons a:nth-child(3) {
  background: linear-gradient(180deg, #ffcc85 40.34%, #ff7c06 155.11%);
}
.float-buttons a:nth-child(2):hover,
.float-buttons a:last-child:hover {
  background: #e06800;
}


/* =============================================
   MAIN PAGE - HERO BANNER
   ============================================= */
.hero-banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-swiper { width: 100%; height: 100%; }
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-swiper .swiper-slide::after {
  display: none;
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 753px;
  text-align: center;
  z-index: 2;
  animation: heroFadeUp 1.2s ease-out both;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-body);
  font-size: 60px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}
.hero-bg-mo {
  display: none;
}
.hero-pagination {
  display: none;
}


/* =============================================
   MAIN - PORTFOLIO SHOWCASE (Section 02)
   ============================================= */
.portfolio-showcase {
  background: var(--bg-dark);
  padding: 0 0 120px;
}

/* Brand Slider */
.brand-slider-wrap {
  padding: 146px 0 0;
  overflow: hidden;
}
.brand-slider { width: 100%; }
.brand-slider .swiper-slide {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slider .swiper-slide img {
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
}

.brand-slider-mo { display: none; }

/* Section Intro */
.section-intro {
  padding: 145px var(--content-padding) 0;
  max-width: var(--page-width);
  margin: 0 auto;
}
.section-intro::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  margin-bottom: 40px;
}
.section-intro h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 600;
  color: var(--color-orange);
  line-height: 1.4;
  max-width: 876px;
}
.section-intro p {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 40px;
  max-width: 876px;
  margin-top: 24px;
}

/* Portfolio Grid Header */
.portfolio-grid-header {
  padding: 200px var(--content-padding) 0;
}
.portfolio-grid + .portfolio-grid-header {
  padding: 145px var(--content-padding) 0;
  max-width: var(--page-width);
  margin: 0 auto;
}
.grid-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 0;
}
.grid-title-row h3 {
  font-family: var(--font-title);
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  line-height: 0.74;
  flex-shrink: 0;
  margin-right: 60px;
}
.category-links {
  display: flex;
  gap: 0;
  align-items: center;
  margin-right: auto;
}
.category-links a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: #b5b5b5;
  letter-spacing: -0.4px;
  transition: color 0.2s;
}
.category-links a:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14.5px;
  background: #b5b5b5;
  margin: 0 20px;
  vertical-align: middle;
}
.category-links a:hover,
.category-links a.active {
  color: var(--color-orange);
  font-weight: 700;
}
.btn-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 200px;
  height: 57px;
  background: var(--gradient-glass);
  border: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.btn-inquiry svg {
  flex-shrink: 0;
}
.btn-inquiry:hover { border-color: rgba(255, 255, 255, 0.5); }

/* Portfolio Grid - 2 Columns */
.portfolio-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 40px var(--content-padding) 0;
  
}
.portfolio-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px !important;
}
.portfolio-grid .grid-item {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}
.portfolio-grid .grid-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s;
}
.portfolio-grid .grid-item:hover img { transform: scale(1.03); }
.portfolio-grid .grid-item .item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.portfolio-grid .grid-item:hover .item-info {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-grid .grid-item .item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}
.portfolio-grid .grid-item .item-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* Grid Empty State */
.portfolio-grid .grid-empty {
  display: none;
  width: 100%;
  padding: 60px 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  grid-column: 1 / -1;
}

/* Detail Page Grid - 3 Columns */
.portfolio-grid.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}


/* =============================================
   MAIN - WHY NEIGE (Section 03)
   ============================================= */
.why-neige {
  width: 100%;
  background: linear-gradient(115.55deg, rgb(226, 96, 34) 9.67%, rgb(255, 166, 93) 93.28%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 170px;
}
.why-neige-title {
  max-width: 670px;
  margin-bottom: 80px;
}
.why-neige-title h2 {
  font-family: var(--font-title);
  font-size: 100px;
  font-weight: 700;
  font-style: italic;
  color: #ffeed7;
  line-height: 1.1;
}
.why-neige-title p {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-top: 30px;
  max-width: 670px;
}
.why-neige-title p span {
  font-weight: 400;
}
.why-neige-cards {
  display: flex;
  width: 100%;
  max-width: var(--page-width);
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}
.why-neige-cards .card {
  flex: 1;
  text-align: left;
  padding: 160px 70px 170px;
  position: relative;
}
.why-neige-cards .card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.why-neige-cards .card-icon {
  width: 90px;
  height: 90px;
  margin: 0 0 26px;
}
.why-neige-cards .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-neige-cards .card-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 35px;
}
.why-neige-cards .card-text strong {
  font-weight: 700;
}


/* =============================================
   MAIN - SERVICES (Section 04)
   ============================================= */
.services {
  background: var(--bg-dark);
  padding: 170px 0;
}
.services-intro {
  padding: 0 var(--content-padding);
  max-width: var(--page-width);
  margin: 0 auto;
}
.services-intro .services-sub {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
}
.services-intro h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  margin-top: 24px;
}
.services-intro h2 strong {
  font-weight: 700;
}
.services-list {
  max-width: var(--page-width);
  margin: 100px auto 0;
  padding: 0 var(--content-padding);
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 414px;
  border-top: 1px solid var(--color-white);
  padding: 60px 0;
}
.service-item:last-child {
  border-bottom: 1px solid var(--color-white);
}
.service-text {
  max-width: 818px;
}
.service-text h4 {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.4;
}
.service-text p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
  margin-top: 16px;
}
.service-text h3 {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  margin-top: 90px;
}
.service-image {
  width: 488px;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =============================================
   MAIN - WE ARE NEIGE (Section 05)
   ============================================= */
.we-are-neige {
  background: var(--bg-light);
  padding: 120px 0;
}
.section-title-center {
  text-align: center;
  max-width: 846px;
  margin: 0 auto;
}
.section-title-center h2 {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.section-title-center p {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.4;
  margin-top: 24px;
}
.section-title-center p strong {
  font-weight: 700;
}
.three-image-banner {
  display: flex;
  gap: 30px;
  max-width: var(--content-width);
  margin: 60px auto 0;
  height: 650px;
}
.banner-card {
  flex: 1;
  min-width: 0;
  height: 650px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
}
.banner-card:hover,
.banner-card.active {
  flex: 2;
}
.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.banner-card .img-hover {
  opacity: 0;
}
.banner-card:hover .img-default,
.banner-card.active .img-default {
  opacity: 0;
}
.banner-card:hover .img-hover,
.banner-card.active .img-hover {
  opacity: 1;
}
.banner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(31, 3, 1, 0.85));
  z-index: 1;
}
.banner-card-text {
  position: absolute;
  bottom: 55px;
  left: 55px;
  right: 55px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.banner-card-text h3 {
  font-family: var(--font-title);
  font-size: 70px;
  font-weight: 700;
  color: #ffcc85;
  line-height: 1.3;
  letter-spacing: -1.75px;
  flex-shrink: 0;
}
.banner-card-text p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: -0.5px;
  max-width: 393px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.banner-card:hover .banner-card-text p,
.banner-card.active .banner-card-text p {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   MAIN - STATS (Section 06)
   ============================================= */
.stats {
  background: var(--gradient-cta);
  padding: 180px 0;
}
.stats-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  justify-content: space-between;
  gap: 180px;
}
.stats-title {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}
.stats-title strong {
  font-weight: 700;
}
.stats-table {
  width: 100%;
  max-width: 1100px;
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 168px;
  padding: 40px 0;
}
.stat-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  min-width: 194px;
}
.stat-value {
  text-align: right;
}
.stat-number {
  font-family: 'Unna', serif;
  font-size: 120px;
  font-weight: 700;
  font-style: italic;
  color: #ffeed7;
  line-height: 1;
}


/* =============================================
   MAIN - PRICING (Section 07)
   ============================================= */
.pricing {
  background: var(--bg-light);
  padding: 180px 0;
}
.pricing-inner {
  padding: 0 var(--content-padding);
  max-width: var(--page-width);
  margin: 0 auto;
}
.pricing-header {
  text-align: left;
  margin-bottom: 80px;
  padding-left: 80px;
}
.pricing-sub {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 16px;
}
.pricing-header h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
}
.pricing-notes {
  margin-top: 24px;
}
.pricing-notes p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.8;
}
.pricing-cards {
  display: flex;
  gap: 20px;
}
.pricing-card,
.pricing-card * {
  transition: all 0.3s;
}
.pricing-card {
  flex: 1;
  max-width: 415px;
  background: var(--color-white);
  border: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 55px 35px;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, #F28A1A 5.99%, #FE5706 93.14%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card .card-header {
  text-align: left;
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-black);
}
.pricing-card:hover .card-header {
  border-bottom-color: var(--color-white);
}
.pricing-card .card-icon {
  width: 104px;
  height: 104px;
  margin: 0 0 24px;
}
.pricing-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pricing-card .card-icon img.img-white { display: none; }
.pricing-card:hover .card-icon img.img-default { display: none; }
.pricing-card:hover .card-icon img.img-white { display: block; }
.pricing-card .card-name {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
  white-space: pre-line;
}
.pricing-card .card-price {
  font-family: var(--font-body);
  font-size: 50px;
  font-weight: 700;
  color: var(--color-orange);
  margin-top: 15px;
  line-height: 1;
}
.pricing-card .card-body {
  flex: 1;
}
.pricing-card .card-body .feature-group {
  margin-bottom: 24px;
}
.pricing-card .card-body .feature-group h5 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 12px;
}
.pricing-card .card-body .feature-group li {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  line-height: 2;
  padding-left: 12px;
  position: relative;
}
.pricing-card .card-body .feature-group li::before {
  content: '-';
  position: absolute;
  left: 0;
}
.pricing-card .card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 59px;
  margin-top: auto;
  background: linear-gradient(91deg, #F28A1A 5.99%, #FE5706 93.14%);
  border: none;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
}
.pricing-card .card-btn:hover { opacity: 0.9; }
.pricing-card:hover .card-btn {
  background: linear-gradient(91deg, #FDE3CC 5.99%, #FFDAA7 93.14%);
  color: #FF7C06;
}
.pricing-card:hover {
  color: var(--color-white);
  transform: scale(1.03);
}
.pricing-card:hover .card-name,
.pricing-card:hover .card-price,
.pricing-card:hover .card-body .feature-group h5,
.pricing-card:hover .card-body .feature-group li {
  color: var(--color-white);
}

/* Pricing Info Section */
.pricing-info {
  margin-top: 120px;
}
.pricing-info .info-row {
  display: flex;
  align-items: flex-start;
  gap: 85px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 60px;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.pricing-info .info-row:first-child {
  padding-top: 0;
  border-top: none;
}
.pricing-info .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-info .info-label {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange);
  flex: 0 0 453px;
  margin-bottom: 0;
}
.pricing-info .info-content {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.8;
  flex: 1;
}
.pricing-info .info-content p {
  margin-bottom: 8px;
}
.pricing-info .info-content p:last-child {
  margin-bottom: 0;
}
.pricing-info .info-content strong {
  font-weight: 700;
  color: var(--color-black);
}
.pricing-info .info-content ul {
  padding-left: 20px;
}
.pricing-info .info-content li {
  padding-left: 0;
  position: relative;
  line-height: 2;
}
.pricing-info .info-content li::before {
  content: '-';
  position: absolute;
  left: -16px;
}
.pricing-info .info-content .text-gray {
  color: #7d7d7d;
  font-size: 20px;
}
.pricing-info .info-content h5 {
  font-size: 24px;
  font-weight: 800;
  color: #68737a;
  margin-top: 40px;
  margin-bottom: 12px;
}
.pricing-info .info-content .model-pricing {
  margin-top: 8px;
}
.pricing-info .info-content .model-pricing {
  padding-left: 0;
}
.pricing-info .info-content .model-pricing li {
  font-size: 20px;
  color: #7d7d7d;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 0;
}
.pricing-info .info-content .model-pricing li::before {
  display: none;
}
.pricing-info .info-content .model-pricing li strong {
  display: inline;
  font-size: 20px;
  font-weight: 800;
  color: #68737a;
}


/* =============================================
   MAIN - PROCESS (Section 08)
   ============================================= */
.process {
  background: var(--bg-dark);
  padding: 180px 0;
}
.process-intro {
  padding: 0 var(--content-padding);
  max-width: var(--page-width);
  margin: 0 auto;
}
.process-sub {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 10px;
}
.process-intro h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 0;
  max-width: var(--page-width);
  margin: 83px auto 0;
  padding: 0 var(--content-padding);
  position: relative;
}
.process-steps .step {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.process-steps .step:nth-child(4) {
  grid-column: 2;
}
.process-steps .step:nth-child(5) {
  grid-column: 3;
}
.process-steps .step-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
}
.process-steps .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.process-steps .step-name {
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 700;
  color: var(--color-orange);
  padding-bottom: 35px;
  margin-bottom: 45px;
  border-bottom: 1px solid #fff;
}
.process-steps .step-desc {
  max-width: 400px;
  position: relative;
}
.process-steps .step:nth-child(1) .step-desc::after,
.process-steps .step:nth-child(2) .step-desc::after,
.process-steps .step:nth-child(4) .step-desc::after {
  content: '';
  position: absolute;
  top: 38px;
  right: -104px;
  width: 57px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='15' viewBox='0 0 57 15' fill='none'%3E%3Cpath d='M56.7071 8.07112C57.0976 7.6806 57.0976 7.04743 56.7071 6.65691L50.3431 0.292946C49.9526 -0.0975785 49.3195 -0.0975785 48.9289 0.292946C48.5384 0.68347 48.5384 1.31664 48.9289 1.70716L54.5858 7.36401L48.9289 13.0209C48.5384 13.4114 48.5384 14.0446 48.9289 14.4351C49.3195 14.8256 49.9526 14.8256 50.3431 14.4351L56.7071 8.07112ZM0 7.36401V8.36401H56V7.36401V6.36401H0V7.36401Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.process-steps .step:nth-child(4) .step-desc::before {
 content: '';
  position: absolute;
  top: 38px;
  left: -104px;
  width: 57px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='15' viewBox='0 0 57 15' fill='none'%3E%3Cpath d='M56.7071 8.07112C57.0976 7.6806 57.0976 7.04743 56.7071 6.65691L50.3431 0.292946C49.9526 -0.0975785 49.3195 -0.0975785 48.9289 0.292946C48.5384 0.68347 48.5384 1.31664 48.9289 1.70716L54.5858 7.36401L48.9289 13.0209C48.5384 13.4114 48.5384 14.0446 48.9289 14.4351C49.3195 14.8256 49.9526 14.8256 50.3431 14.4351L56.7071 8.07112ZM0 7.36401V8.36401H56V7.36401V6.36401H0V7.36401Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.process-steps .step-desc p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
}
.process-steps .step-note {
  margin-top: 30px;
}
.process-steps .step-note p {
  font-size: 15px;
  color: #b5b5b5;
  line-height: 1.8;
}


/* =============================================
   MAIN - REVIEWS (Section 09)
   ============================================= */
.reviews {
  background: var(--bg-dark) url('../img/reviews_bg.jpg') center/cover no-repeat;
  padding: 180px var(--content-padding);
}
.reviews-title {
  text-align: left;
  margin-bottom: 54px;
}
.reviews-sub {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: var(--color-orange);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.reviews-title h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 60px;
}
.brand-logo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 240px);
  gap: 10px;
  justify-content: end;
}
.brand-logo-item {
  width: 240px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 10px;
  padding: 16px;
}
.brand-logo-item img {
  max-width: 160px;
  max-height: 44px;
  object-fit: contain;
}


/* =============================================
   MAIN - CTA BANNER (Section 10)
   ============================================= */
.cta-banner {
  width: 100%;
  height: 662px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner::after {
  display: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 931px;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.cta-content h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 57px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.btn-cta-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}


/* =============================================
   PAGE TITLE (공통 - 각 서브페이지 상단 대형 제목)
   ============================================= */
.page-title-script {
  font-family: var(--font-title);
  font-size: 180px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  text-align: left;
  line-height: 1.21;
}


/* =============================================
   PORTFOLIO PAGE (gallery_neige skin)
   ============================================= */
.portfolio-page {
  background: #131313;
  min-height: 100vh;
  padding: 250px 100px 170px;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.portfolio-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.portfolio-page.layout-two-col::before {
  background-image: linear-gradient(to bottom, transparent -20%, #131313), url('../img/pictures_bg.png');
  background-size: cover;
}
.portfolio-page.layout-three-col::before {
  background-image: linear-gradient(to bottom, transparent -20%, #131313), url('../img/portfolio_bg.png');
  background-size: cover;
}
.portfolio-page > * {
  position: relative;
  z-index: 1;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 34px;
  flex-wrap: nowrap;
}
.category-tabs .tab {
  width: 267px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s;
}
.category-tabs .tab.active {
  background: var(--gradient-tab-active);
  font-weight: 700;
}
.category-tabs .tab:not(.active) {
  background: var(--gradient-glass);
  border: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.category-tabs .tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  margin-top: 80px;
}
.gallery-item {
  text-decoration: none;
  display: block;
}
.gallery-category {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 8px;
}
.gallery-item h3 {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
}
.gallery-item p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gray-sub);
  margin-top: 16px;
}
.gallery-thumb {
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
}
.gallery-thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-thumb img {
  transform: scale(1.03);
}

/* Detail Page - 3 Column Layout */
.portfolio-page.layout-three-col .gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.portfolio-page.layout-three-col .gallery-thumb {
}
.portfolio-page.layout-three-col .gallery-item h3 {
  font-size: 24px;
}
.portfolio-page.layout-three-col .gallery-item p {
  font-size: 16px;
  margin-top: 12px;
}

/* Gallery Empty State */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 120px 0;
  font-size: 18px;
  color: var(--color-gray-sub);
}

/* Board Actions */
.board-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  max-width: var(--page-width);
  margin: 40px auto 0;
  padding: 0 var(--content-padding);
}
.btn-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-write:hover { background: #e06800; }

/* Board Paging (Gnuboard default classes) */
.board-paging {
  margin-top: 60px;
}
.board-paging .pg_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.board-paging .pg_wrap a,
.board-paging .pg_wrap strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-gray-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.board-paging .pg_wrap a:hover {
  color: var(--color-white);
}
.board-paging .pg_wrap .pg_current,
.board-paging .pg_wrap strong {
  color: var(--color-orange);
  font-weight: 700;
}

/* Pagination */
.board-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.board-pagination a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  transition: all 0.2s;
}
.board-pagination a.active {
  font-weight: 800;
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* =============================================
   STUDIO PAGE
   ============================================= */
.studio-page {
  background: var(--bg-light);
  min-height: 100vh;
  padding: 250px 100px 0;
  max-width: var(--page-width);
  margin: 0 auto;
}
.studio-page .page-title-script {
  color: var(--color-black);
}
.ctt_admin {
  display: none;
}

/* Studio Preview */
.studio-preview {
  margin-top: 60px;
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-label {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange-heading);
  line-height: 1.3;
}
.section-heading h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
}
.studio-grid {
  margin-top: 60px;
  overflow: visible;
}
.studio-grid .swiper-wrapper {
  display: flex;
  gap: 24px;
}
.studio-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.studio-img {
  overflow: hidden;
}
.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio-col:nth-child(1) .studio-img { height: 382px; }
.studio-col:nth-child(2) .studio-img-tall { height: 788px; }
.studio-col:nth-child(3) .studio-img-short { height: 247px; }
.studio-col:nth-child(3) .studio-img-tall { height: 517px; }

/* Studio Location */
.studio-location {
  background: var(--bg-dark);
  padding: 180px 0 180px;
  margin-top: 180px;
  margin-left: -100px;
  margin-right: -100px;
  position: relative;
}
.location-heading {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.studio-location .section-label {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.3;
}
.location-heading h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}
.location-map {
  width: 100%;
  height: 600px;
  margin-top: 57px;
}
.location-map .root_daum_roughmap,
.location-map iframe {
  width: 100% !important;
  height: 100% !important;
}
.location-map .wrap_map { height: 100% !important; }
.location-map .wrap_map img { max-width: none; }

.location-info-bar {
  background: var(--gradient-location-bar);
  max-width: var(--content-width);
  margin: -105px auto 0;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  border-radius: 0;
}
.location-info-bar .info-item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 33.3%;
}
.location-info-bar .info-icon {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: var(--gradient-icon-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-info-bar .info-icon svg,
.location-info-bar .info-icon img {
  width: 24px;
  height: 24px;
  fill: #c45a1c;
}
.location-info-bar .info-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}
.location-info-bar .info-text p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  margin-top: 10px;
}


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
  background: var(--bg-dark);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 250px 100px 170px;
  max-width: var(--page-width);
  margin: 0 auto;
}
/* Gradient glow backgrounds */
.contact-page::before,
.contact-page::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.contact-page::before {
  /* 좌측 상단 글로우 */
  top: 221px;
  left: -223px;
  width: 534px;
  height: 759px;
  background: radial-gradient(ellipse at center, rgba(180, 80, 10, 0.25) 0%, rgba(180, 80, 10, 0.08) 40%, transparent 70%);
  filter: blur(40px);
}
.contact-page::after {
  /* 우측 하단 글로우 */
  top: 1203px;
  right: -281px;
  width: 497px;
  height: 629px;
  background: radial-gradient(ellipse at center, rgba(180, 80, 10, 0.25) 0%, rgba(180, 80, 10, 0.08) 40%, transparent 70%);
  filter: blur(40px);
}
.contact-page .page-title-script {
  color: var(--color-orange);
}

/* Decorative art */
.contact-deco {
  position: absolute;
  top: 221px;
  right: 140px;
  width: 655px;
  height: 669px;
  pointer-events: none;
  z-index: 0;
}
.contact-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-content {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

/* Contact Intro */
.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-intro-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-intro h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 275px;
  height: 60px;
  border: 1px solid var(--color-orange);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-orange);
  transition: all 0.2s;
}
.btn-download:hover {
  background: rgba(255, 124, 6, 0.1);
}
.btn-download svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-orange);
  fill: none;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 658px;
  margin-top: 40px;
}
.contact-info .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 30px;
}
.contact-info .info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info .info-left svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  fill: none;
}
.contact-info .info-left span {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}
.contact-info .info-value {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-align: right;
}

/* Contact Form */
.contact-form {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.form-row {
  margin-top: 40px;
}
.form-row:first-child { margin-top: 0; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.form-group label .required {
  color: var(--color-orange);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  height: 60px;
  padding: 22px 44px 22px 20px;
  background: var(--gradient-glass);
  border: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-placeholder);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.form-group textarea {
  height: 260px;
  padding: 20px 44px 22px 20px;
  resize: vertical;
}

/* File Upload Row */
.file-upload-row {
  display: flex;
  gap: 12px;
}
.file-upload-row input[type="text"] {
  flex: 1;
}
.form-group .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 11px 40px;
  margin-bottom: 0;
  background: var(--color-orange);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.form-group .btn-upload:hover { opacity: 0.9; }
.form-group .btn-upload img {
  width: 16px;
  height: 16px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.form-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-white);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}
.form-check input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 700;
}
.form-check label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
}
.form-check label .required {
  color: var(--color-orange);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  height: 64px;
  background: var(--gradient-submit);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 60px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }


/* =============================================
   영카트5 기본 호환 스타일
   ============================================= */
/* 콘텐츠 래퍼 (영카트 기본 구조) */
#wrapper { max-width: 100%; margin: 0; padding: 0; min-height: 600px; }
#container_wr { min-height: 0; padding: 0; }
#container_wr:after { display: block; visibility: hidden; clear: both; content: ""; }
#container { position: relative; }
#container:after { display: block; visibility: hidden; clear: both; content: ""; }
#container_title { display: none; }

/* 기본 테이블 */
.tbl_wrap table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.tbl_head01 td { padding: 10px 5px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--color-gray-sub); }
.tbl_head01 thead th { padding: 15px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--color-white); }

/* 폼 테이블 */
.tbl_frm01 th { padding: 7px 13px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); text-align: left; color: var(--color-white); }
.tbl_frm01 td { padding: 7px 10px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.frm_input { height: 40px; padding: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: var(--color-white); border-radius: 4px; }
.full_input { width: 100%; }

/* 버튼 */
a.btn, .btn { line-height: 38px; height: 38px; padding: 0 15px; text-align: center; font-weight: 600; border: 0; font-size: 14px; border-radius: 4px; }
.btn_submit { border: 0; background: var(--gradient-cta); color: #fff; cursor: pointer; border-radius: 4px; }
.btn_submit:hover { opacity: 0.9; }
a.btn01 { display: inline-block; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: var(--color-white); text-decoration: none; border-radius: 4px; }
a.btn02 { display: inline-block; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--color-white); text-decoration: none; border-radius: 4px; }

/* 페이징 (영카트5 기본 - 다크 테마) */
.pg_wrap { clear: both; display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 44px; }
.pg { text-align: center; }
.pg_page, .pg_current { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }
.pg_page { color: var(--color-gray-sub); font-size: 15px; font-weight: 400; height: 30px; line-height: 30px; padding: 0 4px; min-width: 30px; text-decoration: none; background: transparent; border: none; }
.pg_page:hover { color: var(--color-white); }
.pg_current { background: transparent; color: var(--color-orange); font-weight: 700; font-size: 15px; height: 30px; line-height: 30px; padding: 0 4px; min-width: 30px; text-decoration: none; border: none; }
.pg_start, .pg_prev, .pg_end, .pg_next { color: var(--color-gray-sub); border: none; background: transparent; font-size: 15px; }


/* =============================================
   RESPONSIVE - Laptop
   ============================================= */
@media (max-width: 1440px) {
  :root {
    --content-padding: 60px;
    --footer-padding-x: 60px;
  }
  .header-left { gap: 100px; }
  .header-inner { max-width: 100%; }
  .pricing-cards { flex-wrap: wrap; justify-content: center; }
  .pricing-card { max-width: 48%; flex: 0 0 48%; }
  .three-image-banner .img-medium { min-width: 200px; }
  .stats-table { margin-right: 60px; }
  .stat-number { font-size: 80px; }
  .contact-page { padding: 140px 60px 100px; }
  .contact-deco { right: 60px; width: 500px; height: 510px; }
  .studio-page { padding: 120px 40px 0; }
  .studio-grid .swiper-wrapper { gap: 16px; }
  .studio-col { gap: 16px; }
  .studio-col:nth-child(1) .studio-img { height: 280px; }
  .studio-col:nth-child(2) .studio-img-tall { height: 576px; }
  .studio-col:nth-child(3) .studio-img-short { height: 180px; }
  .studio-col:nth-child(3) .studio-img-tall { height: 380px; }
  .studio-location { margin-left: -40px; margin-right: -40px; }
  .location-heading { padding: 0 40px; }
}

/* =============================================
   RESPONSIVE - Tablet
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --content-padding: 30px;
    --footer-padding-x: 30px;
    --footer-padding-y: 60px;
  }
  .header-left { gap: 40px; }
  .gnb { gap: 24px; }
  .gnb a { font-size: 15px; }

  .hero-banner { height: 600px; }
  .hero-swiper .swiper-slide { height: 600px; }
  .hero-text { top: 200px; width: 90%; }
  .hero-title { font-size: 36px; }

  .section-intro h2 { font-size: 32px; }
  .why-neige { height: auto; padding: 80px 30px; }
  .why-neige-title h2 { font-size: 48px; }
  .why-neige-cards { flex-wrap: wrap; padding: 0 30px; }
  .why-neige-cards .card { flex: 0 0 50%; padding: 30px; }
  .why-neige-cards .card:nth-child(2)::after { display: none; }

  .service-item { flex-direction: column; gap: 30px; }
  .service-image { width: 100%; height: auto; aspect-ratio: 16/9; }

  .three-image-banner { flex-direction: column; height: auto; }
  .three-image-banner .img-large,
  .three-image-banner .img-medium { flex: none; width: 100%; height: 400px; }

  .stats-table { max-width: 100%; margin: 40px 30px 0; padding-right: 30px; }
  .stat-number { font-size: 60px; }

  .pricing-card { max-width: 100%; flex: 0 0 100%; }
  .pricing-info .info-row { flex-direction: column; gap: 20px; }
  .pricing-info .info-label { flex: none; font-size: 24px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 0 30px; }
  .reviews { flex-direction: column; padding: 80px 30px; }
  .reviews-title { flex: none; width: 100%; }
  .brand-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-item { width: auto; }

  .page-title-script { font-size: 100px; }
  .portfolio-page { padding: 120px 40px 80px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-page.layout-three-col .gallery-grid { grid-template-columns: 1fr 1fr; }
  .category-tabs { gap: 12px; flex-wrap: wrap; }
  .category-tabs .tab { width: auto; flex: 1 1 calc(33.33% - 12px); min-width: 0; height: 50px; font-size: 16px; }

  .studio-page { padding: 100px 20px 0; }
  .studio-col .studio-img { height: auto !important; }
  .studio-col .studio-img img { aspect-ratio: 4/3; }
  .studio-location { margin-left: -20px; margin-right: -20px; padding: 80px 0 80px; }
  .location-heading { padding: 0 20px; }
  .location-info-bar { margin-top: -60px; padding: 30px; }
  .section-heading h2, .location-heading h2 { font-size: 28px; }

  .contact-page { padding: 120px 30px 80px; }
  .contact-intro { gap: 30px; }
  .form-row.two-col { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-left { flex-direction: column; gap: 30px; }
  .footer-right { align-items: flex-start; text-align: left; }

  .location-info-bar { flex-direction: column; gap: 30px; margin-top: -40px; padding: 30px 20px; }
}

/* =============================================
   RESPONSIVE - Mobile
   ============================================= */
@media (max-width: 768px) {
  :root {
    --content-padding: 20px;
    --footer-padding-x: 20px;
    --footer-padding-y: 40px;
  }

  .logo img {height: 20px;}

  /* Body scroll lock + header z-index fix */
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { z-index: 300; }

  /* === Mobile Side Menu === */
  #gnb_toggle { display: flex; z-index: 201; position: relative; }
  #gnb_toggle.is_active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #gnb_toggle.is_active span:nth-child(2) { opacity: 0; }
  #gnb_toggle.is_active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .gnb {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(19, 19, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    z-index: 200;
    overflow-y: auto;
    display: flex;
    visibility: hidden;
  }
  .gnb.is_open {
    transform: translateX(0);
    visibility: visible;
  }
  .gnb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
  }
  .gnb-overlay.is_open { display: block; }
  .gnb > a,
  .gnb .gnb-item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .gnb > a {
    padding: 18px 0;
    font-size: 18px;
    color: var(--color-white);
  }
  .gnb .gnb-link {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    color: var(--color-white);
  }
  .gnb .gnb-link.active::after { display: none; }
  .gnb-item::after { display: none; }
  .gnb-dropdown {
    position: static;
    transform: none;
    display: none;
    background: transparent;
    width: auto;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    padding: 0 0 8px 0;
    transition: none;
    text-align: left;
  }
  .gnb-dropdown::before { display: none; }
  .gnb-item:hover .gnb-dropdown { display: none; }
  .gnb-item.is-open .gnb-dropdown { display: block; }
  .gnb-dropdown a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
  }
  .gnb-dropdown a + a { margin-top: 0; }
  .header-left { gap: 0; }
  .btn-cta { display: none; }
  .header-line { margin-top: 20px; }
  /* Side menu always dark regardless of page theme */
  body.page-light .site-header .gnb { background: rgba(19, 19, 19, 0.98); }
  body.page-light .site-header .gnb a,
  body.page-light .site-header .gnb .gnb-link { color: var(--color-white); }
  body.page-light .site-header .gnb .gnb-dropdown a { color: rgba(255, 255, 255, 0.6); }
  body.page-light.menu-open .site-header #gnb_toggle span { background: var(--color-white); }
  

  /* === Hero === */
  .hero-banner { height: auto !important; }
  .hero-swiper { height: auto !important; }
  .hero-swiper .swiper-slide {
    height: auto !important;
    background-image: none !important;
  }
  .hero-bg-mo {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero-text { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 16px; line-height: 1.5; }

  /* === Brand Slider === */
  .brand-slider-wrap { padding-top: 80px; }
  .brand-slider-wrap > .brand-slider { display: none; }
  .brand-slider-mo { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
  .brand-slider-mo .swiper { overflow: hidden; width: 100%; }
  .brand-slider-mo .swiper-slide { width: 120px; height: 40px; display: flex; align-items: center; justify-content: center; }
  .brand-slider-mo .swiper-slide img { max-width: 140px; max-height: 34px; object-fit: contain; }

  /* === Section Intro === */
  .section-intro { padding-top: 60px; }
  .section-intro h2 { font-size: 24px; }
  .section-intro p { font-size: 16px; line-height: 1.6; }
  .services-intro h2 { font-size: 24px; }
  .services-intro .services-sub { font-size: 16px; }

  /* === Portfolio Grid Header (Main page) === */
  .portfolio-grid-header { padding: 60px var(--content-padding) 0; }
  .portfolio-grid + .portfolio-grid-header { padding: 60px var(--content-padding) 0; }
  .grid-title-row { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 20px; border-bottom: 0; padding-bottom: 0;}
  .grid-title-row h3 { font-size: 40px; text-align: center; margin: 0 auto;}
  .category-links a { font-size: 16px; }
  .category-links a:not(:last-child)::after { margin: 0 12px; }
  .grid-title-row > .btn-inquiry { display: none; }
  .btn-inquiry.mo-only { display: flex !important; width: 150px; font-size: 14px; height: 40px; margin: 40px auto 0; }
  .grid-item .item-info { display: none; }
  .portfolio-grid { padding: 20px var(--content-padding) 0; }
  .portfolio-grid.two-col { gap: 10px; }
  .portfolio-grid.three-col { grid-template-columns: 1fr; gap: 10px; }
  .portfolio-grid .grid-item .item-info { transform: translateY(0); opacity: 1; padding: 16px; }
  .portfolio-grid .grid-item .item-title { font-size: 18px; }
  .portfolio-grid .grid-item .item-desc { font-size: 14px; }

  /* === We Are Neige (Three Image Banner) === */
  .we-are-neige { padding: 80px 0; }
  .section-title-center h2 { font-size: 16px; }
  .section-title-center p { font-size: 24px; margin-top: 16px;}
  .three-image-banner { gap: 16px; margin-top: 40px; padding: 0px 20px; box-sizing: border-box;}
  .banner-card { height: auto; min-height: 250px; }
  .banner-card-text { bottom: 20px; left: 20px; right: 20px; gap: 12px; flex-direction: column; align-items: flex-start; }
  .banner-card-text h3 { font-size: 28px; }
  .banner-card-text p { font-size: 14px; max-width: 100%; height: 0; opacity: 0; overflow: hidden; transition: height 0.4s ease, opacity 0.4s ease; }
  .banner-card.active { flex: 2; }
  .banner-card.active .img-default { opacity: 0; }
  .banner-card.active .img-hover { opacity: 1; }
  .banner-card.active .banner-card-text p { height: 100%; opacity: 1; }

  /* === Why Neige === */
  .why-neige { padding: 80px 0; }
  .why-neige-title { margin-bottom: 40px; }
  .why-neige-title h2 { font-size: 48px; }
  .why-neige-title p { font-size: 20px; }
  .why-neige-cards { flex-wrap: wrap; padding: 0; border-top: none; border-bottom: 2px solid rgba(255, 255, 255, 0.3); }
  .why-neige-cards .card { flex: 0 0 50%; padding: 85px 20px 20px; box-sizing: border-box; border-top: 2px solid rgba(255, 255, 255, 0.3); }
  .why-neige-cards .card::after { display: none !important; }
  .why-neige-cards .card:nth-child(1),
  .why-neige-cards .card:nth-child(3) { border-right: 2px solid rgba(255, 255, 255, 0.3); }
  .why-neige-cards .card-icon { width: 30px; height: 30px; margin: 0 0 14px;}
  .why-neige-cards .card-text { font-size: 14px; line-height: 1.6; }
  .why-neige-cards .card-text br {display: none;}

  /* === Stats === */
  .stats { padding: 80px 0; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stats-title { font-size: 24px; }
  .stats-table { max-width: 100%; margin: 0; padding: 0; }
  .stat-row { min-height: auto; padding: 24px 0; }
  .stat-number { font-size: 48px; }
  .stat-label { font-size: 16px; min-width: auto; }

  /* === Services === */
  .services { padding: 80px 0; }
  .services-list { margin-top: 40px; }
  .service-item { min-height: auto; padding: 30px 0; }
  .service-text h4 { font-size: 24px; }
  .service-text p { font-size: 16px; }
  .service-text h3 { font-size: 20px; margin-top: 40px; }

  /* === Process === */
  .process { padding: 80px 0; }
  .process-intro h2 { font-size: 24px; }
  .process-sub { font-size: 22px; }
  .process-steps { grid-template-columns: 1fr; margin-top: 40px; gap: 0;}
  .process-steps .step { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid #fff;}
  .process-steps .step:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
  .process-steps .step:nth-child(4),
  .process-steps .step:nth-child(5) { grid-column: auto; }
  .process-steps .step-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .process-steps .step-icon { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
  .process-steps .step-name { font-size: 20px; padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
  .process-steps .step-desc::after { display: none; }
  .process-steps .step-desc p { font-size: 16px; }
  .process-steps .step-note p { font-size: 13px; }

  /* === Reviews === */
  .reviews { flex-direction: column; padding: 60px 20px; gap: 30px; }
  .reviews-title { width: 100%; }
  .reviews-title h2 { font-size: 24px; line-height: 1.4; }
  .reviews-sub { font-size: 22px; }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-logo-item { width: auto; height: 70px; padding: 12px; }

  /* === Pricing === */
  .pricing { padding: 80px 0; }
  .pricing-header { padding-left: 0px; margin-bottom: 40px; text-align: center;}
  .pricing-header h2 { font-size: 24px; }
  .pricing-sub { font-size: 20px; }
  .pricing-notes p { font-size: 15px; }
  .pricing-cards { gap: 16px; }
  .pricing-card { padding: 24px; }
  .pricing-card:hover {transform: unset;}
  .pricing-header {text-align: center;}
  .pricing-card .card-icon { width: 70px; height: 70px; margin: 0 auto 24px;}
  .pricing-card .card-name { font-size: 18px; }
  .pricing-card .card-price { font-size: 24px; }
  .pricing-card .card-header { padding-bottom: 0px; margin-bottom: 0px; border-bottom: 0px solid #000; text-align: center;}
  .pricing-card .card-body { height: 0; overflow: hidden; opacity: 0; flex: none; margin-top: 0; padding-top: 0; border-top: none; transition: height 0.4s ease, opacity 0.3s ease; }
  .pricing-card.open .card-body { height: auto; opacity: 1; margin-top: 20px; padding-top: 20px; border-top: 1px solid #000; }
  .pricing-card .card-body .feature-group h5 { font-size: 18px; }
  .pricing-card .card-body .feature-group li { font-size: 15px; }
  .pricing-card .card-btn { display: none; }
  .pricing-card.open .card-btn { display: flex; font-size: 17px; width: 210px; height: 44px; margin: 0 auto; }
  .card-toggle {
    display: flex !important; align-items: center; justify-content: flex-start; gap: 6px;
    width: 100%; padding: 0; margin-top: 16px;
    background: none; border: none; border-radius: 0;
    color: #000; font-size: 14px; cursor: pointer; transition: all 0.3s;
  }
  .card-toggle svg { transition: transform 0.3s; }
  .pricing-card.open .card-toggle svg { transform: rotate(180deg); }
  .pricing-info { margin-top: 60px; }
  .pricing-info .info-row { flex-direction: column; gap: 12px; padding: 30px 0px;}
  .pricing-info .info-label { flex: none; font-size: 20px; }
  .pricing-info .info-content { font-size: 15px; }
  .pricing-info .info-content li {line-height: 1.3;}
  .pricing-info .info-content h5 { font-size: 18px; margin-top: 24px; }
  .pricing-info .info-content .text-gray { font-size: 15px; }
  .pricing-info .info-content .model-pricing li strong,
  .pricing-info .info-content .model-pricing li {font-size: 14px;}

    .pricing-card:hover .card-body {border-color: #fff;}
    .pricing-card:hover .card-toggle {color: #fff;}

  /* === CTA Banner === */
  .cta-banner { height: auto; padding: 80px 0px; }
  .cta-content h2 { font-size: 27px; }
  .cta-sub { font-size: 16px; }
  .btn-cta-large { width: 200px; height: 48px; font-size: 14px; margin-top: 40px; }

  /* === Portfolio / Gallery Page === */
  .page-title-script { font-size: 56px; }
  .portfolio-page { padding: 100px 20px 60px; }
  .category-tabs { gap: 8px; }
  .category-tabs .tab { width: auto; flex: 1 1 calc(33.33% - 8px); min-width: 0; height: 44px; font-size: 14px; }
  .gallery-grid { gap: 24px 16px; margin-top: 40px; }
  .portfolio-page.layout-three-col .gallery-grid {gap: 10px;}
  .portfolio-page.layout-three-col .gallery-item h3 {font-size: 18px;}
  .portfolio-page.layout-three-col .gallery-item p {font-size: 14px;}
  .gallery-item h3 { font-size: 20px; }
  .gallery-item p { font-size: 14px; margin-top: 8px; }
  .gallery-thumb { margin-top: 16px; }
  .floating-side { display: none; }

  /* === Studio === */
  .studio-page { padding: 100px 20px 0; overflow-x: hidden; }
  .studio-page .page-title-script { font-size: 40px; }
  .studio-preview .section-heading h2 { font-size: 24px; }
  .studio-location .section-heading h2 { font-size: 24px; }
  .section-label { font-size: 16px; }
  .section-heading { gap: 16px; }
  .studio-grid { overflow: visible; margin-top: 40px; }
  .studio-grid .swiper-wrapper { gap: 0; }
  .studio-col { gap: 12px; max-width: 230px; width: 230px; flex-shrink: 0; flex: none; }
  .studio-col .studio-img { height: auto !important; }
  .studio-col .studio-img img { aspect-ratio: auto; height: auto; }
  /* Studio Swiper Progressbar */
  .studio-pagination { position: relative; width: 100%; height: 2px; background: #ddd; margin-top: 20px; }
  .studio-pagination .swiper-pagination-progressbar-fill { background: var(--color-orange); height: 100%; }
  .studio-location { margin-left: -20px; margin-right: -20px; padding: 80px 0; margin-top: 80px; }
  .location-heading { padding: 0 20px; gap: 16px; }
  .location-heading h2 { font-size: 24px; }
  .studio-location .section-label { font-size: 16px; }
  .location-map { height: 300px; margin-top: 30px; }
  .location-info-bar { flex-direction: column; gap: 40px; padding: 30px; margin-top: -40px; max-width: calc(100% - 40px); }
  .location-info-bar .info-item { width: 100%; }
  .location-info-bar .info-icon { width: 40px; height: 40px; }
  .location-info-bar .info-text strong { font-size: 16px; }
  .location-info-bar .info-text p { font-size: 15px; }

  /* === Contact === */

  .contact-content {margin-top: 24px;}
  .contact-page { padding: 120px 20px 60px; }
  .contact-page .page-title-script { font-size: 48px; }
  .contact-intro h2 { font-size: 24px; }
  .contact-form { margin-top: 40px; }
  .form-row { margin-top: 24px; }
  .form-group label { font-size: 18px; margin-bottom: 8px; }
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea { height: 52px; font-size: 16px; padding: 14px 16px; }
  .form-group textarea { height: 200px; padding: 16px; }
  .btn-download { width: 100%; height: 52px; font-size: 16px; }
  .contact-info { max-width: 100%; }
  .contact-info .info-line { padding: 16px 0; height: auto; }
  .contact-info .info-left span { font-size: 16px; }
  .contact-info .info-value { font-size: 16px; }
  .file-upload-row { gap: 10px; }
  .file-upload-row input[type="text"] { height: 44px; padding: 12px; font-size: 14px; }
  .form-group .btn-upload { display: flex !important; align-items: center; height: 44px; padding: 0 16px; font-size: 16px; font-weight: 700; gap: 7px; margin-bottom: 0 !important; line-height: 44px; box-sizing: border-box; }
  .form-group .btn-upload img { width: 16px; height: 16px; }
  .btn-submit { font-size: 20px; height: 56px; margin-top: 40px; }
  .form-check { margin-top: 24px; }
  .form-check label { font-size: 16px; }
  .contact-deco {        right: 20px;
        width: 150px;
        height: 150px;
        top: 120px;}

  /* === Footer === */
  .site-footer { padding: 60px 0; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-left { flex-direction: column; gap: 20px; }
  .footer-info { font-size: 13px; gap: 3px; }
  .footer-info .info-row { flex-wrap: wrap; font-size: 13px; line-height: 1.8; color: #fff;}
  .footer-info .info-row .sep { margin: 0 8px; height: 12px; }
  .footer-logo { width: 120px; height: auto; }
  .footer-right { align-items: flex-start; text-align: left; }
  .footer-copyright { font-size: 13px; }
  .footer-scroll-top { right: 20px; }
  .footer-sns {width: 20px; height: 20px;}
}

/* =============================================
   RESPONSIVE - Small Mobile
   ============================================= */
@media (max-width: 480px) {
  .hero-title { font-size: 27px; }
  .hero-sub { font-size: 16px; margin-bottom: 14px;}
  .page-title-script { font-size: 40px; }
  .portfolio-page { padding: 120px 20px 40px; }
  .category-links { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; scrollbar-width: none; }
  .category-links::-webkit-scrollbar { display: none; }
  .category-links a { white-space: nowrap; flex-shrink: 0; }
  .category-tabs .tab { height: 40px; font-size: 13px; }
  .portfolio-page.layout-three-col .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item h3 { font-size: 18px; }
  .gallery-item p { font-size: 13px; }
  .pricing-card .card-name { font-size: 20px; }
  .pricing-card .card-price { font-size: 24px; }
  .pricing-card .card-btn { font-size: 16px; }
  .stat-number { font-size: 40px; }
  .why-neige-title h2 { font-size: 36px; }
  .why-neige-title p { font-size: 18px; }
  .section-title-center p { font-size: 20px; }
  .banner-card { min-height: 250px; }
  .banner-card-text h3 { font-size: 24px; }
  .brand-logo-grid { gap: 8px; }
  .brand-logo-item { height: 60px; }
  .logo { width: 100px; }
  .contact-page { padding: 120px 20px 80px; }
  .contact-page .page-title-script { font-size: 40px; }
  .contact-intro h2 { font-size: 24px; }
  .studio-page { padding: 120px 20px 0; }
  .studio-page .page-title-script { font-size: 40px; }
  .studio-preview { margin-top: 24px; }
  .mo-only { display: inline !important; }
  .pc-only { display: none !important; }
  .cta-content h2 { font-size: 20px; }
  .process-intro h2 { font-size: 22px; }
  .stats-title { font-size: 24px; }
  .service-text h4 { font-size: 22px; }
  .reviews-title h2 { font-size: 22px; }
  .pricing-header h2 { font-size: 22px; }
  .footer-logo { width: 100px; }
}

/* =============================================
   Admin Sort Mode - Drag & Drop
   ============================================= */
.board-actions .btn-sort-mode,
.board-actions .btn-sort-save,
.board-actions .btn-sort-cancel {
  margin-right: 0;
}
.btn-sort-mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-sort-mode:hover { background: #555; }
.btn-sort-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange, #e85a2a);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-sort-save:hover { background: #c94a1e; }
.btn-sort-save:disabled { background: #aaa; cursor: not-allowed; }
.btn-sort-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #888;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-sort-cancel:hover { background: #666; }

/* Sort mode active */
.gallery-grid.sort-mode,
.portfolio-page.layout-three-col .gallery-grid.sort-mode {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 2px dashed var(--color-orange, #e85a2a);
  padding: 12px;
  border-radius: 4px;
}
.gallery-grid.sort-mode .gallery-item {
  cursor: grab;
  user-select: none;
  position: relative;
}
.gallery-grid.sort-mode .gallery-item:active { cursor: grabbing; }
.gallery-grid.sort-mode .gallery-item::after {
  content: '\2630';
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

/* SortableJS ghost element */
.sort-ghost {
  opacity: 0.4;
  border: 2px dashed var(--color-orange, #e85a2a) !important;
}
