﻿:root{
  --paper:#f4f0e7;
  --paper-deep:#e9e2d5;
  --ink:#1d201d;
  --muted:#67695f;
  --olive:#58634c;
  --olive-dark:#3f4937;
  --sand:#bda983;
  --line:#cec6b8;
  --white:#fffdf8;
  --max:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    Arial,
    sans-serif;
  line-height:1.72;
  word-break:keep-all;
}

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

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

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(29,32,29,.96);
  color:#f8f4ea;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.header-inner{
  width:min(var(--max),calc(100% - 40px));
  min-height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.logo{
  display:inline-flex;
  align-items:center;
  font-size:19px;
  font-weight:800;
  letter-spacing:-.04em;
  white-space:nowrap;
}

.logo::before{
  content:"";
  width:12px;
  height:12px;
  margin-right:11px;
  background:var(--sand);
  transform:rotate(45deg);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.main-nav a{
  padding:9px 13px;
  font-size:14px;
  font-weight:650;
  color:#ddd9ce;
  border-bottom:1px solid transparent;
  transition:.2s ease;
}

.main-nav a:hover{
  color:#fff;
  border-bottom-color:var(--sand);
}

main{
  overflow:hidden;
}

.service-section{
  width:min(var(--max),calc(100% - 40px));
  margin:0 auto;
  padding:96px 0;
  border-bottom:1px solid var(--line);
}

.service-section:first-of-type{
  position:relative;
  min-height:580px;
  display:grid;
  align-content:center;
  grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr);
  gap:70px;
}

.service-section:first-of-type::before{
  content:"GIMPO · UIJEONGBU";
  position:absolute;
  top:52px;
  right:0;
  writing-mode:vertical-rl;
  font-size:11px;
  letter-spacing:.28em;
  font-weight:800;
  color:var(--olive);
}

.service-section:first-of-type::after{
  content:"";
  position:absolute;
  right:7%;
  bottom:55px;
  width:190px;
  height:190px;
  border:1px solid var(--sand);
  border-radius:50%;
  opacity:.65;
  pointer-events:none;
}

.section-heading{
  position:relative;
  max-width:900px;
  margin-bottom:42px;
}

.section-label{
  margin:0 0 18px;
  color:var(--olive);
  font-size:12px;
  font-weight:850;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.section-number{
  display:inline-block;
  margin-bottom:18px;
  padding-bottom:5px;
  border-bottom:2px solid var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
}

.section-heading h1,
.section-heading h2{
  margin:0;
  max-width:920px;
  line-height:1.18;
  letter-spacing:-.055em;
  font-weight:850;
}

.section-heading h1{
  font-size:clamp(42px,6.3vw,88px);
}

.section-heading h2{
  font-size:clamp(32px,4.2vw,58px);
}

.section-heading p{
  max-width:760px;
  margin:24px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
}

.region-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  border-top:1px solid var(--ink);
  border-left:1px solid var(--line);
}

.region-card{
  position:relative;
  min-height:120px;
  padding:28px 22px;
  display:flex;
  align-items:flex-end;
  background:transparent;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:17px;
  font-weight:800;
  letter-spacing:-.035em;
  transition:
    background .2s ease,
    color .2s ease,
    padding .2s ease;
}

.region-card::before{
  content:"AREA";
  position:absolute;
  top:17px;
  left:22px;
  color:#8e8b82;
  font-size:9px;
  font-weight:800;
  letter-spacing:.18em;
}

.region-card::after{
  content:"↗";
  position:absolute;
  right:18px;
  top:16px;
  font-size:15px;
  color:var(--olive);
}

.region-card:hover{
  padding-left:29px;
  background:var(--ink);
  color:#fff;
}

.region-card:hover::before,
.region-card:hover::after{
  color:var(--sand);
}

.guide-section{
  width:100%;
  margin:0;
  padding:100px max(20px,calc((100% - var(--max))/2));
  background:var(--ink);
  color:#f3efe6;
}

.guide-section .section-label{
  color:var(--sand);
}

.guide-section .section-heading p{
  color:#bfc0b8;
}

.guide-box{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:60px;
  margin-top:40px;
  padding-top:38px;
  border-top:1px solid rgba(255,255,255,.22);
}

.guide-steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.13);
}

.guide-steps > *{
  padding:30px 25px;
  background:var(--ink);
}

.guide-steps > *:nth-child(even){
  background:#242824;
}

.region-window{
  width:min(var(--max),calc(100% - 40px));
  margin:92px auto;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
  min-height:400px;
  border:1px solid var(--ink);
  background:var(--white);
}

.region-window__copy{
  padding:64px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.region-window__label{
  margin:0 0 16px;
  color:var(--olive);
  font-size:11px;
  font-weight:900;
  letter-spacing:.22em;
}

.region-window__text{
  margin:0;
  max-width:640px;
  font-size:clamp(26px,3vw,44px);
  line-height:1.28;
  font-weight:850;
  letter-spacing:-.05em;
}

.region-window__visual{
  position:relative;
  min-height:360px;
  overflow:hidden;
  background:
    linear-gradient(
      135deg,
      transparent 0 48%,
      rgba(255,255,255,.12) 48% 50%,
      transparent 50% 100%
    ),
    var(--olive);
}

.region-window__visual::before{
  content:"1004";
  position:absolute;
  left:32px;
  bottom:28px;
  color:#f0eadc;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(54px,8vw,120px);
  line-height:.8;
  opacity:.18;
}

.region-window__visual::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  top:50%;
  left:50%;
  border:1px solid rgba(255,255,255,.48);
  transform:translate(-50%,-50%) rotate(45deg);
}

.region-window__cta{
  align-self:flex-start;
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:17px;
  padding:14px 0;
  color:var(--ink);
  border-bottom:2px solid var(--ink);
  font-weight:850;
  font-size:15px;
  transition:.2s ease;
}

.region-window__cta::after{
  content:"→";
  transition:transform .2s ease;
}

.region-window__cta:hover{
  color:var(--olive);
  border-bottom-color:var(--olive);
}

.region-window__cta:hover::after{
  transform:translateX(6px);
}

.section-external-cta{
  width:min(var(--max),calc(100% - 40px));
  margin:80px auto;
  padding:0;
  background:transparent;
  text-align:left;
}

.section-external-cta a{
  min-height:138px;
  padding:32px 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:var(--sand);
  color:var(--ink);
  border:1px solid var(--ink);
  font-size:clamp(20px,2.6vw,34px);
  line-height:1.3;
  font-weight:900;
  letter-spacing:-.045em;
  transition:
    transform .2s ease,
    background .2s ease;
}

.section-external-cta a::after{
  content:"↗";
  flex:0 0 auto;
  font-size:34px;
  font-weight:400;
}

.section-external-cta a:hover{
  transform:translate(-5px,-5px);
  background:#cbb58e;
  box-shadow:5px 5px 0 var(--ink);
}

.site-footer{
  margin-top:110px;
  padding:54px 20px;
  background:#151715;
  color:#bdbdb4;
  border-top:7px solid var(--olive);
  text-align:center;
  font-size:13px;
  line-height:1.9;
}

.site-footer a{
  color:#f3efe6;
}

::selection{
  background:var(--olive);
  color:#fff;
}

@media (max-width:980px){

  .header-inner{
    min-height:70px;
    align-items:flex-start;
    padding:18px 0;
  }

  .main-nav{
    max-width:65%;
  }

  .service-section{
    padding:72px 0;
  }

  .service-section:first-of-type{
    min-height:auto;
    grid-template-columns:1fr;
    gap:30px;
    padding-top:88px;
  }

  .service-section:first-of-type::after{
    width:130px;
    height:130px;
  }

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

  .guide-box{
    grid-template-columns:1fr;
  }

  .region-window{
    grid-template-columns:1fr;
  }

  .region-window__visual{
    min-height:260px;
  }
}

@media (max-width:700px){

  body{
    line-height:1.65;
  }

  .header-inner{
    width:min(100% - 28px,var(--max));
    display:block;
  }

  .logo{
    margin-bottom:12px;
  }

  .main-nav{
    max-width:none;
    justify-content:flex-start;
    margin-left:-8px;
  }

  .main-nav a{
    padding:7px 8px;
    font-size:12px;
  }

  .service-section,
  .region-window,
  .section-external-cta{
    width:calc(100% - 28px);
  }

  .service-section{
    padding:58px 0;
  }

  .service-section:first-of-type{
    padding-top:70px;
  }

  .service-section:first-of-type::before{
    top:20px;
    writing-mode:horizontal-tb;
    font-size:9px;
  }

  .service-section:first-of-type::after{
    display:none;
  }

  .section-heading{
    margin-bottom:30px;
  }

  .section-heading h1{
    font-size:39px;
  }

  .section-heading h2{
    font-size:31px;
  }

  .section-heading p{
    font-size:15px;
  }

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

  .region-card{
    min-height:105px;
    padding:24px 16px;
    font-size:15px;
  }

  .region-card::before{
    left:16px;
  }

  .guide-section{
    padding:62px 14px;
  }

  .guide-steps{
    grid-template-columns:1fr;
  }

  .region-window{
    margin:54px auto;
  }

  .region-window__copy{
    padding:40px 27px;
  }

  .region-window__text{
    font-size:28px;
  }

  .region-window__visual{
    min-height:220px;
  }

  .section-external-cta{
    margin:52px auto;
  }

  .section-external-cta a{
    min-height:112px;
    padding:25px 22px;
    font-size:20px;
  }

  .site-footer{
    margin-top:65px;
  }
}

/* === PA ALL PINK DESIGN START === */

:root{
  --pa-rose:#b84f76;
  --pa-rose-dark:#963c5e;
  --pa-pink:#fff3f7;
  --pa-yellow:#f3d875;
  --pa-brown:#503b43;
  --pa-muted:#79666d;
  --pa-line:#eed1dc;
}

body{
  background:
    radial-gradient(circle at 8% 5%,rgba(255,211,225,.50),transparent 27%),
    linear-gradient(180deg,#fffafb 0%,#fff2f6 48%,#fff9fb 100%) !important;
  color:var(--pa-brown) !important;
}

/* 상단 노랑 */
.site-header{
  background:linear-gradient(135deg,#f6df83 0%,#e9c85b 100%) !important;
  border-bottom:1px solid rgba(121,91,20,.17) !important;
  box-shadow:0 7px 24px rgba(118,88,20,.09) !important;
}

.site-header,
.site-header a{
  color:#493a18 !important;
}

/* 대표영역 */
.region-window{
  background:linear-gradient(135deg,#ffffff,#fff1f6) !important;
  border:1px solid rgba(190,104,136,.20) !important;
  border-radius:30px !important;
  box-shadow:0 22px 55px rgba(131,69,91,.09) !important;
}

.region-window::before{
  background:var(--pa-rose) !important;
}

.region-window__label{
  background:#fff !important;
  color:var(--pa-rose) !important;
  border:1px solid #edc5d4 !important;
  border-radius:999px !important;
  font-size:12px !important;
}

.region-window h1,
.region-window__copy h1{
  color:#47343c !important;
  font-size:clamp(34px,4vw,52px) !important;
  line-height:1.14 !important;
  letter-spacing:-.045em !important;
}

.region-window__text{
  color:var(--pa-muted) !important;
  font-size:16px !important;
  line-height:1.9 !important;
}

/* 위쪽 인기업체 바로가기 */
.region-window__cta{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  background:linear-gradient(135deg,#c65a80,#a94268) !important;
  color:#fff !important;
  border:0 !important;
  border-radius:999px !important;
  min-height:54px !important;
  padding:0 26px !important;
  box-shadow:0 12px 27px rgba(158,58,96,.20) !important;
}

.region-window__cta,
.region-window__cta span{
  color:#fff !important;
}

.region-window__visual{
  border-radius:65px 18px 65px 18px !important;
  overflow:hidden !important;
  box-shadow:0 20px 42px rgba(115,65,82,.14) !important;
}

/* 제목/섹션 */
.section-label{
  color:var(--pa-rose) !important;
  font-weight:850 !important;
}

.section-number{
  color:rgba(184,79,118,.15) !important;
}

.section-heading{
  color:#49353d !important;
  font-weight:850 !important;
}

/* 지역카드 */
.region-grid{
  gap:16px !important;
}

.region-card{
  background:rgba(255,255,255,.90) !important;
  border:1px solid var(--pa-line) !important;
  border-radius:22px !important;
  box-shadow:0 9px 28px rgba(122,68,87,.065) !important;
  transition:.23s ease !important;
}

.region-card a{
  color:#533c45 !important;
  font-weight:850 !important;
}

.region-card:hover{
  background:#fff !important;
  border-color:#dc9db4 !important;
  box-shadow:0 17px 34px rgba(123,61,84,.11) !important;
  transform:translateY(-4px) !important;
}

/* 역 카드 */
.station-card{
  background:#fff5f8 !important;
  color:#754455 !important;
  border:1px solid #ebc7d5 !important;
  border-radius:999px !important;
  box-shadow:none !important;
}

.station-card,
.station-card a{
  color:#754455 !important;
}

.station-card:hover{
  background:#b84f76 !important;
  border-color:#b84f76 !important;
}

.station-card:hover,
.station-card:hover a{
  color:#fff !important;
}

/* 하단 인기업체 바로가기 */
.section-external-cta{
  display:block !important;
  width:100% !important;
  max-width:none !important;
  margin:34px 0 0 !important;
  padding:0 !important;
  background:linear-gradient(135deg,#c6537d,#a83f65) !important;
  border:0 !important;
  border-radius:18px !important;
  box-shadow:0 14px 30px rgba(151,55,91,.19) !important;
  overflow:hidden !important;
}

.section-external-cta a{
  display:flex !important;
  width:100% !important;
  min-height:68px !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 30px !important;
  box-sizing:border-box !important;
  color:#fff !important;
  text-align:center !important;
  font-size:18px !important;
  font-weight:900 !important;
}

/* Footer 밝은 분홍 */
.site-footer{
  background:linear-gradient(135deg,#ffdce7 0%,#f7bfd2 100%) !important;
  color:#67414f !important;
  border-top:1px solid rgba(177,92,123,.18) !important;
}

.site-footer a{
  color:#67414f !important;
}

@media(max-width:768px){
  .region-window{
    border-radius:22px !important;
  }

  .region-window h1,
  .region-window__copy h1{
    font-size:34px !important;
  }

  .region-window__visual{
    border-radius:45px 15px 45px 15px !important;
  }

  .region-card{
    border-radius:18px !important;
  }

  .section-external-cta a{
    min-height:62px !important;
    font-size:16px !important;
  }
}

/* === PA ALL PINK DESIGN END === */

/* === PA FINAL COLOR FIX START === */

/* 상단 인기업체 버튼 */
html body .region-window .region-window__cta{
  background:linear-gradient(135deg,#d96891,#b94770) !important;
  color:#ffffff !important;
  border:0 !important;
  border-radius:999px !important;
  box-shadow:0 12px 26px rgba(177,65,108,.22) !important;
}

/* 지역카드 자체가 a 태그이므로 직접 지정 */
html body a.region-card,
html body .region-card{
  background:#fff8fb !important;
  color:#5b3d48 !important;
  border:1px solid #efcbd8 !important;
  border-radius:18px !important;
  box-shadow:0 8px 22px rgba(143,76,99,.08) !important;
}

html body a.region-card:hover,
html body .region-card:hover{
  background:#ffe7f0 !important;
  color:#963f60 !important;
  border-color:#df9db6 !important;
}

/* 카드 안 모든 글자 */
html body .region-card,
html body .region-card *{
  color:#5b3d48 !important;
}

/* 역카드 */
html body .station-card{
  background:#fff1f6 !important;
  border:1px solid #ecc2d1 !important;
  color:#754455 !important;
}

/* 아래 인기업체 바로가기 - 전체폭 진한 로즈 */
html body .section-external-cta{
  width:100% !important;
  background:linear-gradient(135deg,#ce5c86,#aa3d66) !important;
  border:0 !important;
  border-radius:16px !important;
  overflow:hidden !important;
}

html body .section-external-cta .region-window__cta,
html body .section-external-cta > a{
  display:flex !important;
  width:100% !important;
  max-width:none !important;
  min-height:68px !important;
  margin:0 !important;
  padding:0 30px !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  background:transparent !important;
  color:#ffffff !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  font-size:18px !important;
  font-weight:900 !important;
}

/* Footer 확실하게 밝은 분홍 */
html body .site-footer{
  background:linear-gradient(135deg,#ffdce8,#f7bfd2) !important;
  color:#68414f !important;
  border-top:1px solid #e9abc0 !important;
}

html body .site-footer,
html body .site-footer *{
  color:#68414f !important;
}

/* === PA FINAL COLOR FIX END === */


