@charset "UTF-8";

/* =========================================================
   기본 설정
========================================================= */
:root {
  --color-black: #111111;
  --color-dark: #333333;
  --color-gray: #666666;
  --color-light-gray: #eeeeee;
  --color-white: #ffffff;

  /* 럭스골드 포인트 색상 */
  --color-point: #cc9900;

  /* 포인트 색상 hover */
  --color-point-dark: #aa7f00;

  /* 연한 포인트 배경 */
  --color-point-light: #fff9e8;

  --header-height: 95px;
  --header-mobile-height: 70px;
  --content-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  color: var(--color-black);
  background: var(--color-white);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

.site-main {
  width: 100%;
}


/* =========================================================
   상단 헤더
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: var(--header-height);

  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-point);

  transition:
    height 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* 스크롤했을 때 추가되는 효과 */
.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;

  width: calc(100% - 40px);
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
}


/* =========================================================
   로고
========================================================= */
.site-logo,
.mobile-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;

  color: var(--color-black);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.logo-black {
  color: var(--color-black);
}

.logo-gold {
color: var(--color-point);
}


/* =========================================================
   PC 메뉴 패널
========================================================= */
.header-panel {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: 100%;
}

.mobile-menu-head {
  display: none;
}


/* =========================================================
   주메뉴
========================================================= */
.main-nav {
  margin-left: 43px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);

  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;

  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 20px;

  width: 0;
  height: 0px;

   background-color: var(--color-point);
  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--color-point);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 100%;
}


/* =========================================================
   로그인·회원가입·알림
========================================================= */
.header-util {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-left: auto;
  white-space: nowrap;
}

.util-link,
.alarm-link {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.035em;

  transition: color 0.2s ease;

}

.util-link:hover,
.util-link:focus-visible,
.alarm-link:hover,
.alarm-link:focus-visible {
  color: var(--color-gold-dark);
}

.util-divider {
  display: block;
  width: 1px;
  height: 12px;
  background-color: #bdbdbd;
}

.alarm-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-left: 10px;
}

.alarm-link svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   모바일 버튼
========================================================= */
.mobile-menu-toggle {
  display: none;

  position: relative;
  width: 34px;
  height: 34px;
  margin-left: auto;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  z-index: 10;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;

  background-color: #111111;
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-close {
  position: relative;

  width: 38px;
  height: 38px;
}

.mobile-menu-close span {
  position: absolute;
  top: 18px;
  left: 7px;

  width: 25px;
  height: 2px;

  background-color: #111111;
  border-radius: 10px;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}


/* 모바일 메뉴 뒤 검은 배경 */
.mobile-menu-dim {
  visibility: hidden;
  opacity: 0;

  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;

  width: 100%;
  height: calc(100% - 70px);

  background-color: rgba(0, 0, 0, 0.48);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* =========================================================
   1200px 이하
========================================================= */
@media screen and (max-width: 1200px) {
  .header-inner {
    width: calc(100% - 48px);
  }

  .main-nav {
    margin-left: 34px;
  }

  .main-nav > ul {
    gap: 25px;
  }

  .alarm-link {
    margin-left: 4px;
  }
}


/* =========================================================
   태블릿·모바일 메뉴
========================================================= */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 70px;
    --section-gap: 70px !important;
  }

  .site-header {
    height: var(--header-mobile-height);
  }

  .header-inner {
    width: 100%;
    padding: 0 24px;
  }

  .site-logo {
    font-size: 25px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* 오른쪽에서 나타나는 메뉴 */
  .header-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;

    width: min(86vw, 390px);
    height: 100vh;
    height: 100dvh;

    padding: 0 28px 30px;

    background-color: #ffffff;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.12);

    overflow-y: auto;
    overscroll-behavior: contain;

    transform: translateX(105%);
    visibility: hidden;

    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s ease;
  }

  body.menu-open .header-panel {
    visibility: visible;
    transform: translateX(0);
  }

  body.menu-open .mobile-menu-dim {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;

    min-height: 82px;

    border-bottom: 1px solid #eeeeee;
  }

  .mobile-logo {
    font-size: 24px;
  }

  /* 모바일 세로 메뉴 */
  .main-nav {
    margin: 20px 0 0;
  }

  .main-nav > ul {
    display: block;
  }

  .main-nav > ul > li {
    border-bottom: 1px solid #eeeeee;
  }

  .main-nav a {
    justify-content: space-between;

    width: 100%;
    height: auto;
    padding: 19px 4px;

    font-size: 18px;
    font-weight: 700;
  }

  .main-nav a::before {
    content: "";

    order: 2;

    width: 8px;
    height: 8px;

    margin-right: 4px;

    border-top: 1px solid #999999;
    border-right: 1px solid #999999;

    transform: rotate(45deg);
  }

  .main-nav a::after {
    display: none;
  }

  /* 모바일 로그인 영역 */
  .header-util {
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
    margin: auto 0 0;
    padding: 28px 4px 0;

    border-top: 1px solid #eeeeee;
  }

  .util-link,
  .alarm-link {
    font-size: 14px;
  }

  .alarm-link {
    width: 100%;
    margin: 18px 0 0;
    padding: 14px 16px;

    border: 1px solid #e8e0cc;
    border-radius: 8px;

    background-color: #fffaf0;
  }
}


/* =========================================================
   모바일
========================================================= */
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .site-logo {
    font-size: 23px;
  }

  .header-panel {
    width: min(88vw, 360px);
    padding-right: 22px;
    padding-left: 22px;
  }

  .main-nav a {
    font-size: 17px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .site-logo {
    font-size: 22px;
  }

  .header-panel {
    width: 88vw;
    padding-right: 20px;
    padding-left: 20px;
  }
}






/* =========================================================
   하단 고정 내비게이션
========================================================= */
:root {
  --bottom-nav-height: 100px;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;

  /* 하단 고정 메뉴에 콘텐츠가 가리지 않도록 여백 확보 */
  padding-bottom: var(--bottom-nav-height);
}


/* 하단 전체 영역 */
.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1500;

  width: 100%;
  height: var(--bottom-nav-height);

  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.035);
}


/* 메뉴 안쪽 */
.bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;

  width: calc(100% - 40px);
  max-width: 530px;
  height: 100%;
  margin: 0 auto;
}


/* 메뉴 한 개 */
.bottom-nav__item {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;

  min-width: 0;
  padding-top: 9px;

  color: #abb3bb;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.bottom-nav__item:hover,
.bottom-nav__item:focus-visible,
.bottom-nav__item.is-active {
  color: #222222;
}

.bottom-nav__item:not(.bottom-nav__item--main):hover {
  transform: translateY(-2px);
}


/* 일반 아이콘 */
.bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;
}

.bottom-nav__icon svg {
  width: 100%;
  height: 100%;

  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 메뉴 글자 */
.bottom-nav__text {
  display: block;

  color: inherit;
  line-height: 1.2;
  white-space: nowrap;
}


/* =========================================================
   가운데 견적요청 버튼
========================================================= */
.bottom-nav__item--main {
  justify-content: flex-start;

  padding-top: 54px;

  color: #111111;
}

.bottom-nav__main-icon {
  position: absolute;
  top: -28px;
  left: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  background-color: var(--color-point);
  border: 5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(112, 82, 0, 0.14);

  transform: translateX(-50%);

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* 가로선 */
.bottom-nav__main-icon span:first-child {
  position: absolute;

  width: 23px;
  height: 2px;

  background-color: #ffffff;
  border-radius: 5px;
}

/* 세로선 */
.bottom-nav__main-icon span:last-child {
  position: absolute;

  width: 2px;
  height: 23px;

  background-color: #ffffff;
  border-radius: 5px;
}

.bottom-nav__item--main:hover .bottom-nav__main-icon,
.bottom-nav__item--main:focus-visible .bottom-nav__main-icon {
  background-color: #ad8200;
  box-shadow: 0 8px 20px rgba(112, 82, 0, 0.2);

  transform: translateX(-50%) translateY(-3px);
}


/* =========================================================
   태블릿
========================================================= */
@media screen and (max-width: 768px) {
  :root {
    --bottom-nav-height: 88px;
  }

  .bottom-nav__inner {
    width: 100%;
    max-width: none;
    padding: 0 8px;
  }

  .bottom-nav__item {
    gap: 5px;
    padding-top: 9px;
  }

  .bottom-nav__icon {
    width: 24px;
    height: 24px;
  }

  .bottom-nav__item--main {
    padding-top: 48px;
  }

  .bottom-nav__main-icon {
    top: -25px;

    width: 57px;
    height: 57px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 480px) {
  :root {
    --bottom-nav-height: 82px;
  }

  .bottom-nav__inner {
    padding: 0 3px;
  }

  .bottom-nav__item {
    gap: 4px;
    padding-top: 8px;
  }

  .bottom-nav__icon {
    width: 22px;
    height: 22px;
  }

  .bottom-nav__item--main {
    padding-top: 45px;
  }

  .bottom-nav__main-icon {
    top: -23px;

    width: 54px;
    height: 54px;
    border-width: 4px;
  }

  .bottom-nav__main-icon span:first-child {
    width: 20px;
  }

  .bottom-nav__main-icon span:last-child {
    height: 20px;
  }
}



/* =========================================================
   TOP 버튼
========================================================= */
.top-button {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: fixed;
  right: 30px;
  bottom: calc(var(--bottom-nav-height) + 25px);
  z-index: 1490;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;

  width: 52px;
  height: 52px;

  color: #ffffff;
  background-color: #333333;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);

  transform: translateY(12px);

  transition:
    visibility 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    background-color 0.2s ease;
}

.top-button.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);
}

.top-button:hover,
.top-button:focus-visible {
  background-color: var(--color-point);
  transform: translateY(-3px);
}

.top-button__arrow {
  display: block;

  width: 9px;
  height: 9px;

  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;

  transform: rotate(45deg);
}

.top-button__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}


/* 태블릿 */
@media screen and (max-width: 768px) {
  .top-button {
    right: 18px;
    bottom: calc(var(--bottom-nav-height) + 18px);

    width: 48px;
    height: 48px;
  }
}


/* 작은 모바일 */
@media screen and (max-width: 480px) {
  .top-button {
    right: 14px;
    bottom: calc(var(--bottom-nav-height) + 14px);

    width: 44px;
    height: 44px;
  }

  .top-button__arrow {
    width: 8px;
    height: 8px;
  }

  .top-button__text {
    font-size: 9px;
  }
}



/* =========================================================
   다국어 메뉴
========================================================= */
.language-menu {
  position: relative;
  flex: 0 0 auto;

  overflow: visible;
}

.language-menu__button {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  min-height: 34px;
  padding: 0 4px;

  color: #333333;
  background-color: transparent;
  border: 0;

  cursor: pointer;

  transition: color 0.2s ease;
}

.language-menu__button:hover,
.language-menu__button:focus-visible {
  color: var(--color-point);
}


/* 지구 아이콘 */
.language-menu__globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;
}

.language-menu__globe svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 현재 언어 */
.language-menu__current {
  font-size: 13px;
  font-weight: 600;
}


/* 화살표 */
.language-menu__arrow {
  width: 6px;
  height: 6px;

  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;

  transform: rotate(45deg) translateY(-2px);

  transition: transform 0.2s ease;
}


/* =========================================================
   드롭다운
========================================================= */
.language-menu__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1500;

  width: 125px;

  /*
    버튼과 메뉴 사이 hover가 끊기지 않도록
    간격을 padding으로 처리
  */
  padding-top: 7px;

  transform: translateY(-4px);

  transition:
    visibility 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.language-menu__dropdown-inner {
  padding: 6px;

  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 7px;

  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.11);
}


/* 언어 항목 */
.language-menu__item {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 37px;
  padding: 0 11px;

  color: #444444;
  background-color: #ffffff;
  border-radius: 4px;

  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.language-menu__item:hover,
.language-menu__item:focus-visible {
  color: var(--color-point);
  background-color: #fff8e6;
}

.language-menu__item.is-active {
  color: var(--color-point);
  font-weight: 700;
}


/* =========================================================
   PC - 마우스 오버
========================================================= */
@media screen and (min-width: 769px) {
  .language-menu:hover .language-menu__dropdown,
  .language-menu:focus-within .language-menu__dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0);
  }

  .language-menu:hover .language-menu__arrow,
  .language-menu:focus-within .language-menu__arrow {
    transform: rotate(225deg);
  }
}


/* =========================================================
   모바일
========================================================= */
@media screen and (max-width: 768px) {
  .language-menu {
    width: 100%;
  }

  .language-menu__button {
    justify-content: flex-start;

    width: 100%;
    min-height: 42px;
    padding: 0;
  }

  .language-menu__dropdown {
    position: static;

    display: none;

    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    width: 100%;
    padding-top: 4px;

    transform: none;
  }

  .language-menu.is-open .language-menu__dropdown {
    display: block;
  }

  .language-menu.is-open .language-menu__arrow {
    transform: rotate(225deg);
  }

  .language-menu__dropdown-inner {
    box-shadow: none;
  }
}



/* =========================================================
   모바일 다국어 메뉴
========================================================= */
.mobile-language-item {
  display: none;
}


/* =========================================================
   모바일
========================================================= */
@media screen and (max-width: 1024px) {

  /* 모바일에서만 표시 */
  .main-nav ul > li.mobile-language-item {
    display: block;

    width: 100%;

    margin: 0;
    padding: 14px 0 16px;

    border-bottom: 1px solid #eeeeee;
  }


  /* Language 제목 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-title {
    display: flex;
    align-items: center;
    gap: 6px;

    width: auto;

    margin: 0 0 10px;
    padding: 0;

    color: #222222;
    background: transparent;

    border: 0;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
  }


  /* 지구 아이콘 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-globe {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    flex: 0 0 auto;
  }

  .main-nav ul > li.mobile-language-item
  .mobile-language-globe svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }


  /* 언어 목록 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;

    margin: 0;
    padding: 0;

    gap: 0;
  }


  /* =========================================================
     기존 1차 메뉴 a 스타일 강제 해제
  ========================================================= */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    width: auto !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 13px !important;

    color: #777777 !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 500;
    line-height: 1.5 !important;

    white-space: nowrap;

    transition: color 0.2s ease;
  }


  /* 첫 번째 언어 왼쪽 여백 제거 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link:first-child {
    padding-left: 0 !important;
  }


  /* 마지막 언어 오른쪽 여백 제거 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link:last-child {
    padding-right: 0 !important;
  }


  /* 기존 메뉴 화살표 제거 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link::before,
  .main-nav ul > li.mobile-language-item
  .mobile-language-link::after {
    content: none !important;

    display: none !important;
  }


  /* 언어 사이 구분선 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link:not(:last-child) {
    border-right: 1px solid #dddddd !important;
  }


  /* hover */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link:hover,
  .main-nav ul > li.mobile-language-item
  .mobile-language-link:focus-visible {
    color: var(--color-point) !important;
    background: transparent !important;

    border-top: 0 !important;
    border-bottom: 0 !important;
  }


  /* 현재 언어 */
  .main-nav ul > li.mobile-language-item
  .mobile-language-link.is-active {
    color: var(--color-point) !important;
    background: transparent !important;

    font-weight: 700;
  }

}