/* ============================================
   LUA ATELIER BLOOM - Main Stylesheet
   Color: Pink Point + Beige Base + Charcoal Text
   ============================================ */

/* ---------- Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Pretendard',-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  font-size:16px;line-height:1.65;
  color:var(--charcoal);
  background:var(--beige-bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;border:none;background:none;cursor:pointer;color:inherit}
ul,ol{list-style:none}
em,i{font-style:normal}

/* 본문 텍스트는 고딕체 (Pretendard) - 세리프는 제목만 */
.section p,
.about-text p,
.brand-lead,
.biz-area-content > p,
.biz-info p,
.biz-intro p,
.value-item p,
.process-step p,
.history-item li,
.biz-area-list li,
.article-list li,
.article-content p,
.article-lead,
.head-desc{
  font-family:'Pretendard',-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  font-weight:400;
  letter-spacing:-.01em;
}

/* ---------- CSS Variables ---------- */
:root{
  --pink-main:#e8a5b3;
  --pink-deep:#d68a9a;
  --pink-soft:#f5d5dc;
  --pink-pale:#fbeaee;
  --beige-bg:#faf6f1;
  --beige-mid:#ede4d6;
  --beige-deep:#d9c9b3;
  --charcoal:#2e2c2a;
  --charcoal-soft:#4a4744;
  --gray-line:#e8e2d8;
  --white:#fffefb;
  --serif:'Cormorant Garamond',serif;
  --container:1280px;
  --shadow-soft:0 8px 32px rgba(46,44,42,.06);
  --shadow-mid:0 12px 40px rgba(46,44,42,.1);
}

.container{max-width:var(--container);margin:0 auto;padding:0 32px}

/* ---------- Typography ---------- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.2;letter-spacing:-.01em;color:var(--charcoal)}
h1{font-size:clamp(32px,4.8vw,58px)}
h2{font-size:clamp(26px,3.6vw,44px)}
h3{font-size:clamp(18px,2.2vw,24px)}
h2 em{color:var(--pink-deep);font-style:italic}
/* section-tag (가치, 그 이상의 공간 등 섹션 앞 이탤릭 레이블) */

.section{padding:120px 0;position:relative}
.section-tag{
  display:inline-block;
  font-family:var(--serif);font-style:italic;
  font-size:34px;color:var(--pink-deep);
  margin-bottom:16px;letter-spacing:.02em;
  line-height:1;
}
.section-head{margin-bottom:60px}
.section-head.center{text-align:center}
.section-head.between{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:20px}
.head-desc{margin-top:14px;color:var(--charcoal-soft);font-size:15px}

.btn-line{
  display:inline-flex;align-items:center;gap:10px;
  font-size:14px;letter-spacing:.1em;
  padding:14px 0;color:var(--charcoal);
  border-bottom:1px solid var(--charcoal);
  transition:all .35s ease;
  text-transform:uppercase;font-weight:500;
}
.btn-line i{transition:transform .35s ease}
.btn-line:hover{color:var(--pink-deep);border-color:var(--pink-deep)}
.btn-line:hover i{transform:translateX(6px)}

/* ---------- HEADER ---------- */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:18px 0;
  transition:all .4s ease;
  background:transparent;
}
.header.scrolled{
  background:rgba(250,246,241,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:12px 0;
  box-shadow:0 1px 0 rgba(46,44,42,.06);
}
.header-inner{
  max-width:var(--container);margin:0 auto;padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{display:flex;align-items:center}
.logo img{
  height:72px;width:auto;
  transition:height .35s ease;
  /* 투명 PNG, 어떤 필터도 없음 - 핑크 그대로 */
}
/* 헤더가 hero(어두운 배경) 위일 때 - GNB만 흰색 */
.header:not(.scrolled) .gnb a{color:var(--white)}
.header.scrolled .logo img{height:60px}

.gnb ul{display:flex;gap:40px;align-items:center}
.gnb a{
  font-size:15px;letter-spacing:.06em;font-weight:500;
  position:relative;padding:8px 0;
  transition:color .3s ease;
  white-space:nowrap;
}
.gnb a::after{
  content:'';position:absolute;left:50%;bottom:0;
  width:0;height:1px;background:var(--pink-deep);
  transition:all .35s ease;transform:translateX(-50%);
}
.gnb a:hover{color:var(--pink-deep)}
.gnb a:hover::after{width:100%}

.menu-btn{display:none;width:30px;height:30px;flex-direction:column;justify-content:center;gap:5px}
.menu-btn span{display:block;width:24px;height:1.5px;background:var(--charcoal);transition:all .3s}
.header:not(.scrolled) .menu-btn span{background:var(--white)}
.menu-btn.active span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.menu-btn.active span:nth-child(2){opacity:0}
.menu-btn.active span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

.mobile-menu{
  position:fixed;top:0;right:-100%;width:80%;max-width:320px;
  height:100vh;background:var(--white);z-index:99;
  padding:100px 36px 40px;
  transition:right .4s cubic-bezier(.6,.05,.3,1);
  box-shadow:-20px 0 60px rgba(0,0,0,.1);
  overflow-y:auto;
}
.mobile-menu.active{right:0}
.mobile-menu ul{display:flex;flex-direction:column;gap:18px}
.mobile-menu a{
  font-family:var(--serif);font-size:24px;
  display:block;padding:8px 0;
  border-bottom:1px solid var(--gray-line);
  transition:color .3s;
  letter-spacing:.01em;
}
.mobile-menu a:hover{color:var(--pink-deep)}

/* ---------- HERO ---------- */
.hero{
  position:relative;height:100vh;min-height:680px;
  overflow:hidden;background:var(--charcoal);
}
.hero-slider{position:relative;height:100%}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  display:flex;align-items:center;justify-content:flex-start;
  padding:0 32px 0 8%;
  opacity:0;visibility:hidden;
  transition:opacity 1.2s ease,visibility 1.2s ease;
}
.hero-slide.active{opacity:1;visibility:visible}
.hero-slide.active .hero-text > *{
  animation:slideUp 1s cubic-bezier(.4,.1,.3,1) forwards;
}
.hero-slide.active .hero-tag{animation-delay:.2s}
.hero-slide.active h1{animation-delay:.4s}
.hero-slide.active p{animation-delay:.6s}

@keyframes slideUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}

.hero-text{max-width:680px;color:var(--white);opacity:1}
.hero-text > *{opacity:0}
.hero-tag{
  display:inline-block;
  font-family:var(--serif);font-style:italic;font-size:22px;
  color:var(--pink-soft);margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.4);
  letter-spacing:.05em;
}
.hero-text h1{color:var(--white);margin-bottom:22px;font-weight:300;font-size:clamp(30px,4.2vw,52px)}
.hero-text p{font-size:16px;line-height:1.8;color:rgba(255,255,255,.9);font-weight:300}

.hero-dots{
  position:absolute;bottom:60px;left:8%;
  display:flex;gap:16px;z-index:5;
}
.hero-dots button{
  width:36px;height:2px;background:rgba(255,255,255,.4);
  transition:all .35s ease;
}
.hero-dots button.active{background:var(--pink-soft);width:60px}

.hero-scroll{
  position:absolute;bottom:60px;right:8%;
  display:flex;flex-direction:column;align-items:center;gap:14px;
  color:var(--white);
  font-size:11px;letter-spacing:.3em;
}
.hero-scroll i{
  width:1px;height:50px;background:rgba(255,255,255,.6);
  position:relative;overflow:hidden;
}
.hero-scroll i::after{
  content:'';position:absolute;top:-50px;left:0;
  width:100%;height:50px;background:var(--pink-soft);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{top:-50px}100%{top:50px}
}

/* ---------- ABOUT ---------- */
.about{background:var(--beige-bg)}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:90px;align-items:center;
}
.about-img{position:relative}
.about-img img{
  width:100%;height:560px;object-fit:cover;
  border-radius:4px;
  box-shadow:var(--shadow-mid);
}
.img-tag{
  position:absolute;top:30px;left:-20px;
  background:var(--pink-main);color:var(--white);
  padding:10px 24px;
  font-size:11px;letter-spacing:.3em;
  font-weight:500;
}
.about-text h2{margin-bottom:24px;font-weight:300;font-size:clamp(22px,2.8vw,36px)}
.about-text p{
  margin-bottom:18px;color:var(--charcoal-soft);
  font-size:16px;line-height:1.85;
}
.about-text p:last-of-type{margin-bottom:36px}

/* ---------- BUSINESS PREVIEW (매거진 스타일) ---------- */
.business-preview{
  background:linear-gradient(180deg,var(--beige-bg) 0%,var(--beige-mid) 100%);
}
.biz-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:28px;
}
.biz-card{
  display:block;
  background:var(--white);
  border-radius:2px;
  overflow:hidden;
  transition:all .5s cubic-bezier(.4,.1,.3,1);
  position:relative;
}
.biz-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 50px rgba(46,44,42,.12);
}

.biz-img-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/5;
}
.biz-img{
  width:100%;height:100%;
  background-size:cover;background-position:center;
  transition:transform 1.2s cubic-bezier(.4,.1,.3,1);
}
.biz-card:hover .biz-img{transform:scale(1.08)}

.biz-info{
  padding:28px 28px 32px;
  position:relative;
}
.biz-info::before{
  content:'';position:absolute;left:28px;top:0;
  width:36px;height:2px;background:var(--pink-deep);
}
.biz-tag{
  display:inline-block;
  font-family:var(--serif);font-style:italic;
  font-size:22px;color:var(--pink-deep);
  margin-bottom:8px;letter-spacing:.02em;
  line-height:1.3;
}
.biz-info h3{
  font-family:'Pretendard';font-weight:600;
  font-size:22px;color:var(--charcoal);
  margin-bottom:6px;letter-spacing:-.02em;
  line-height:1.3;
}
.biz-info p{
  color:var(--charcoal-soft);font-size:14px;
  line-height:1.6;letter-spacing:.02em;
}
.biz-arrow{
  display:inline-block;
  margin-top:20px;
  font-size:20px;color:var(--charcoal);
  transition:transform .35s ease,color .35s ease;
}
.biz-card:hover .biz-arrow{
  color:var(--pink-deep);
  transform:translateX(8px);
}

/* ---------- PORTFOLIO PREVIEW ---------- */
.portfolio-preview{background:var(--beige-bg)}
.port-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
}
.port-item{position:relative;overflow:hidden;display:block}
.port-thumb{
  aspect-ratio:1/1;
  background-size:cover;background-position:center;
  transition:transform 1s cubic-bezier(.4,.1,.3,1);
}
.port-item:hover .port-thumb{transform:scale(1.08)}
.port-info{
  padding:22px 4px 4px;
}
.port-info span{
  font-family:var(--serif);font-style:italic;
  font-size:24px;color:var(--pink-deep);
  display:block;margin-bottom:8px;
  line-height:1;
}
.port-info h4{
  font-size:18px;font-weight:500;
  font-family:'Pretendard';
  color:var(--charcoal);letter-spacing:-.01em;
}

/* ---------- INSTAGRAM ---------- */
.instagram{
  background:linear-gradient(180deg,var(--beige-mid) 0%,var(--beige-bg) 100%);
}
/* 인스타 그리드 - 4열 정사각형 (표준 인스타 비율 1:1) */
.insta-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:56px;
}
.insta-item{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:4px;
  background:#f5f0eb;
  transition:transform .4s ease, box-shadow .4s ease;
}
.insta-item:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(214,138,154,.18);
}
/* 인스타 이미지 */
.insta-item-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  background-size:cover; background-position:center;
  transition:transform .6s ease;
}
.insta-item:hover .insta-item-img{
  transform:scale(1.08);
}
/* 인스타 오버레이 - 호버시 캡션 + 인스타 아이콘 노출 */
.insta-overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:16px;
  background:linear-gradient(180deg, rgba(46,44,42,0) 0%, rgba(46,44,42,.85) 100%);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}
.insta-item:hover .insta-overlay{ opacity:1; }
/* 인스타 아이콘 (상단 중앙) */
.insta-overlay-icon{
  width:36px; height:36px;
  margin-bottom:auto;
  margin-top:14px;
  color:#fff;
  opacity:.95;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
/* 캡션 (두 줄 표시) */
.insta-caption{
  width:100%;
  margin-top:auto;
  color:#fff;
  font-family:'Pretendard',sans-serif;
  font-size:13px;
  font-weight:400;
  line-height:1.45;
  letter-spacing:-.01em;
  text-align:left;
  /* 두 줄 줄임 처리 */
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  word-break:break-word;
}
/* 비디오 아이콘 (영상 게시물 표시) */
.insta-badge-video{
  position:absolute; top:10px; right:10px;
  width:22px; height:22px;
  color:#fff;
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.4));
  pointer-events:none;
}

.sns-buttons{
  display:flex;gap:14px;justify-content:center;
}
.btn-sns{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 32px;
  font-size:14px;font-weight:500;letter-spacing:.05em;
  border-radius:100px;
  transition:all .35s ease;
}
.btn-sns.insta{
  background:linear-gradient(135deg,var(--pink-main),var(--pink-deep));
  color:var(--white);
}
.btn-sns.insta:hover{transform:translateY(-3px);box-shadow:0 12px 24px rgba(214,138,154,.3)}
.btn-sns.kakao{
  background:#fee500;color:#3c1e1e;
}
.btn-sns.kakao:hover{transform:translateY(-3px);box-shadow:0 12px 24px rgba(254,229,0,.4)}

/* ---------- FOOTER ---------- */
.footer{
  background:var(--charcoal);color:rgba(255,255,255,.7);
  padding:80px 0 40px;
}
.footer-top{margin-bottom:50px}
.footer-logo-img{
  height:64px;width:auto;
  /* 핑크 로고 그대로 - 어두운 footer 위에서 핑크색이 잘 보임 */
}
.footer-desc{
  margin-top:24px;font-size:14px;line-height:1.85;
  color:rgba(255,255,255,.7);
}
.footer-desc strong{
  font-family:var(--serif);font-style:italic;
  color:var(--pink-soft);font-weight:500;
  font-size:18px;
  display:inline-block;margin-top:4px;
  letter-spacing:.02em;
}
.footer-mid{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:40px;
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-info p{
  margin-bottom:12px;font-size:14px;
  color:rgba(255,255,255,.85);
  display:flex;align-items:center;flex-wrap:wrap;
}
.footer-info p span{
  display:inline-block;width:90px;
  font-family:var(--serif);font-style:italic;
  color:var(--pink-soft);font-size:18px;
}
.footer-info p small{
  font-size:12px;color:rgba(255,255,255,.5);
  margin-left:8px;
}
.footer-menu{display:flex;gap:32px;align-items:flex-start}
.footer-menu a{
  font-size:13px;letter-spacing:.08em;
  color:rgba(255,255,255,.7);
  transition:color .3s ease;
}
.footer-menu a:hover{color:var(--pink-soft)}

.footer-company{
  padding:30px 0 20px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-company p{
  font-size:13px;line-height:1.85;
  color:rgba(255,255,255,.55);
  letter-spacing:.01em;
}

.footer-bottom{padding-top:24px}
.footer-bottom small{
  font-size:12px;letter-spacing:.05em;
  color:rgba(255,255,255,.5);
}
.footer-bottom strong{
  color:rgba(255,255,255,.85);
  font-weight:600;
}

/* ---------- QUICK MENU ---------- */
.quick-menu{
  position:fixed;right:24px;bottom:24px;z-index:90;
  display:flex;flex-direction:column;gap:10px;
}
.quick-btn{
  width:54px;height:54px;border-radius:50%;
  background:var(--white);color:var(--charcoal);
  display:grid;place-items:center;position:relative;
  box-shadow:0 6px 20px rgba(46,44,42,.15);
  transition:all .3s ease;
  cursor:pointer;
}
.quick-btn:hover{transform:translateX(-4px)}
.quick-btn span{
  position:absolute;right:64px;top:50%;transform:translateY(-50%);
  background:var(--charcoal);color:var(--white);
  padding:6px 14px;font-size:12px;letter-spacing:.05em;
  border-radius:4px;white-space:nowrap;
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
.quick-btn:hover span{opacity:1}
.quick-btn.insta{background:linear-gradient(135deg,var(--pink-main),#d68a9a);color:var(--white)}
.quick-btn.kakao{background:#fee500;color:#3c1e1e}
.quick-btn.call{background:var(--pink-deep);color:var(--white)}
.quick-btn.top{background:var(--charcoal);color:var(--white);opacity:0;visibility:hidden;transition:all .35s}
.quick-btn.top.show{opacity:1;visibility:visible}

/* ============================================
   RESPONSIVE - 반응형 전면 재정비
   ============================================ */

/* ---------- 태블릿 (1024px 이하) ---------- */
@media (max-width:1024px){
  .container,.header-inner{padding:0 28px}
  .section{padding:90px 0}
  
  /* 5개 메뉴라 태블릿에서도 햄버거 메뉴로 */
  .gnb{display:none}
  .menu-btn{display:flex}
  .logo img{height:56px}
  .header.scrolled .logo img{height:48px}
  
  .biz-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .port-grid{grid-template-columns:repeat(2,1fr)}
  .insta-grid{grid-template-columns:repeat(3,1fr);gap:12px}
  .about-grid{grid-template-columns:1fr;gap:50px}
  .about-img img{height:460px}
  .img-tag{left:0;top:20px}
  
  .section-head.between{flex-direction:column;align-items:flex-start;gap:24px}
}

/* ---------- 모바일 (768px 이하) ---------- */
@media (max-width:768px){
  body{font-size:15px}
  .container,.header-inner{padding:0 20px}
  .section{padding:60px 0}
  
  /* 타이포그래피 축소 */
  h1{font-size:28px;line-height:1.2}
  h2{font-size:24px;line-height:1.25}
  h3{font-size:20px}
  
  .section-tag{font-size:20px;margin-bottom:12px}
  .head-desc{font-size:14px}
  
  /* 헤더 */
  .header{padding:14px 0}
  .header.scrolled{padding:10px 0}
  .gnb{display:none}
  .menu-btn{display:flex}
  .logo img{height:44px}
  .header.scrolled .logo img{height:38px}
  
  /* 모바일 메뉴 */
  .mobile-menu{padding:90px 28px 32px}
  .mobile-menu ul{gap:14px}
  .mobile-menu a{font-size:20px;padding:6px 0}
  
  /* HERO */
  .hero{height:90vh;min-height:520px;max-height:720px}
  .hero-slide{padding:0 20px;align-items:center;justify-content:flex-start}
  .hero-text{max-width:100%;padding-right:20px}
  .hero-tag{font-size:16px;margin-bottom:18px;padding-bottom:10px}
  .hero-text h1{font-size:32px;margin-bottom:18px}
  .hero-text p{font-size:14px}
  .hero-dots{left:20px;bottom:32px}
  .hero-dots button{width:24px}
  .hero-dots button.active{width:40px}
  .hero-scroll{display:none}
  
  /* ABOUT */
  .about-img img{height:340px}
  .img-tag{font-size:10px;padding:7px 16px;letter-spacing:.2em}
  .about-text h2{margin-bottom:24px}
  .about-text p{font-size:14px;margin-bottom:14px}
  
  /* BUSINESS */
  .biz-grid{grid-template-columns:1fr;gap:20px;max-width:420px;margin:0 auto}
  .biz-img-wrap{aspect-ratio:4/3.4}
  .biz-info{padding:22px 22px 26px}
  .biz-info::before{left:22px;width:30px}
  .biz-tag{font-size:18px}
  .biz-info h3{font-size:20px}
  .biz-info p{font-size:13px}
  .biz-arrow{margin-top:14px;font-size:18px}
  
  /* PORTFOLIO PREVIEW */
  .port-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .port-info{padding:14px 4px 4px}
  .port-info span{font-size:18px;margin-bottom:6px}
  .port-info h4{font-size:15px}
  
  /* INSTAGRAM */
  .insta-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:40px}
  /* 모바일은 호버가 없으므로 캡션 항상 살짝 보임 */
  .insta-overlay{opacity:1;background:linear-gradient(180deg, rgba(46,44,42,0) 50%, rgba(46,44,42,.78) 100%)}
  .insta-overlay-icon{display:none}
  .insta-caption{font-size:11.5px;line-height:1.4;-webkit-line-clamp:2}
  .sns-buttons{flex-direction:column;align-items:stretch;gap:10px;max-width:300px;margin:0 auto}
  .btn-sns{width:100%;justify-content:center;padding:14px 24px;font-size:13px}
  
  /* FOOTER */
  .footer{padding:60px 0 32px}
  .footer-top{margin-bottom:36px}
  .footer-logo-img{height:48px}
  .footer-desc{font-size:13px;margin-top:18px}
  .footer-desc strong{font-size:16px}
  .footer-mid{flex-direction:column;gap:28px;padding:30px 0}
  .footer-info p{font-size:13px;flex-wrap:wrap;line-height:1.7}
  .footer-info p span{width:auto;font-size:15px;margin-right:10px}
  .footer-info p small{margin-left:6px;font-size:11px}
  .footer-menu{flex-wrap:wrap;gap:14px 24px}
  .footer-menu a{font-size:12px}
  .footer-company{padding:20px 0 16px}
  .footer-company p{font-size:11px;line-height:1.85}
  .footer-bottom small{font-size:11px}
  
  /* 퀵메뉴 */
  .quick-menu{right:12px;bottom:12px;gap:8px}
  .quick-btn{width:46px;height:46px}
  .quick-btn span{display:none}
  .quick-btn svg{width:20px;height:20px}
}

/* ---------- 작은 모바일 (480px 이하) ---------- */
@media (max-width:480px){
  .container,.header-inner{padding:0 16px}
  .section{padding:50px 0}
  
  h1{font-size:28px}
  h2{font-size:24px}
  .section-tag{font-size:20px}
  
  .hero-text h1{font-size:26px}
  .hero-tag{font-size:14px}
  
  .port-grid{grid-template-columns:1fr;gap:18px;max-width:380px;margin:0 auto}
  .port-thumb{aspect-ratio:4/3}
  .port-info h4{font-size:16px}
  
  .insta-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .insta-caption{font-size:11px;padding:0}
  
  .about-img img{height:280px}
  .biz-img-wrap{aspect-ratio:4/3}
  
  .footer-info p span{font-size:14px}
  .footer-menu{gap:10px 18px}
  .quick-btn{width:42px;height:42px}
  .quick-btn svg{width:18px;height:18px}
}

/* ============================================
   LANGUAGE SWITCH (KO / EN 토글)
   ============================================ */
.gnb .lang-switch{
  margin-left:8px;
  padding-left:20px;
  border-left:1px solid var(--gray-line);
}
.gnb .lang-btn{
  display:inline-block;
  font-family:var(--serif);font-style:italic;
  font-size:14px;font-weight:600;
  color:var(--pink-deep);
  letter-spacing:.08em;
  padding:6px 14px;
  border:1px solid var(--pink-deep);
  border-radius:100px;
  transition:all .3s ease;
}
.gnb .lang-btn:hover{
  background:var(--pink-deep);
  color:var(--white);
}
/* hero(어두운 배경) 위에서 GNB 흰색 모드일 때 */
.header:not(.scrolled) .gnb .lang-switch{
  border-left-color:rgba(255,255,255,.3);
}
.header:not(.scrolled) .gnb .lang-btn{
  color:var(--white);
  border-color:rgba(255,255,255,.7);
}
.header:not(.scrolled) .gnb .lang-btn:hover{
  background:var(--white);
  color:var(--charcoal);
  border-color:var(--white);
}

/* 모바일 메뉴 언어 전환 */
.mobile-menu .lang-switch-mobile{
  margin-top:18px;padding-top:18px;
  border-top:1px solid var(--gray-line);
}
.mobile-menu .lang-btn-mobile{
  display:flex;align-items:center;justify-content:space-between;
  font-family:'Pretendard',sans-serif;
  font-size:15px;font-weight:500;
  color:var(--pink-deep);
  border-bottom:none !important;
  padding:10px 14px !important;
  background:var(--pink-pale);
  border-radius:6px;
}

@media (max-width:1024px){
  .gnb .lang-switch{display:none}  /* 햄버거 메뉴로 전환 시 숨김 */
}
