.site-wrap {
  min-height: 100vh;
  background: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-fixed {
  background: rgba(15, 14, 12, 0.74);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 180px 1fr 150px auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 640px;
  margin: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-nav__item > a:hover,
.site-nav__item > a:focus-visible,
.site-nav__item > a.is-active {
  color: #ffffff;
}

.site-nav__sub {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 150px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    box-shadow 0.24s ease;
}

.site-nav__item:hover .site-nav__sub,
.site-nav__item:focus-within .site-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.site-nav__sub a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #28231e;
  border-radius: 6px;
  white-space: nowrap;
  transition:
    color 0.24s ease,
    background-color 0.24s ease;
}

.site-nav__sub a:hover,
.site-nav__sub a:focus-visible {
  background: #f1eee9;
}

.site-header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.site-main {
  min-height: 70vh;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.92);
  background: #020a16;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.2fr) minmax(100px, 0.25fr);
  align-items: start;
  gap: 40px;
}

.site-footer__name {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-footer__text {
  margin-top: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__nav {
  display: grid;
  gap: 8px;
  justify-items: start;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.quick-menu {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.quick-menu__link {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #151515;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(20, 16, 12, 0.16);
  backdrop-filter: blur(12px);
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  background-color: #FFAA00;
}

.quick-menu__link--phone {
  background: #178f73;
}

.quick-menu__link--instagram {
  background: #d94f70;
}

.quick-menu__link--kakao {
  background: #ffee00;
  color:#000;
}

.quick-menu__link--blog {
  background: #2d6f4b;
}

.quick-menu__link:hover,
.quick-menu__link:focus-visible {
  color: #ffffff;
  background: #151515;
}

.quick-menu__link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-menu__link--kakao svg path,
.quick-menu__link--phone svg path {
  fill: currentColor;
  stroke: none;
}
