@charset "utf-8";

/* ==============================
   Root Variables
============================== */
:root {
  --bg: #0f0f10;
  --bg-soft: #17181a;
  --text: #ffffff;
  --text-sub: #cfcfcf;
  --text-muted: #9b9b9b;
  --white: #ffffff;
  --light: #f7f7f7;
  --light-line: #ececec;
  --accent: #c96a2b;
  --accent-soft: rgba(201, 106, 43, 0.12);
  --accent-deep: #a65421;
  --max: 1200px;
  --header-height: 82px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}


/* ==============================
   Utility
============================== */
body.menu-open {overflow: hidden;}
.scroll-lock {overflow: hidden;}
.pc {display: block;}
.mobile {display: none;}


/* ==============================
   Layout
============================== */
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
}

.section {
  padding: 110px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

#top { padding-top: 83px; box-sizing: border-box;}


/* ==============================
   Common Typography
============================== */
.section-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-subtitle {
  margin: 0 0 48px;
  font-size: 18px;
  color: #555;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}


/* ==============================
   Button
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-deep) 100%
  );
  color: #fff;
  box-shadow: 0 10px 15px rgba(201, 106, 43, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #16171c;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-dark:hover {
  background: #20222a;
}

.btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.btn-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}


/* ==============================
   Header
============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(15, 15, 16, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


/* ==============================
   Logo
============================== */
.logo {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo img { max-height: 30px;}
.logo span { color: var(--accent);}


/* ==============================
   Navigation Desktop
============================== */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a,
.mobile-nav a {
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-desktop a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-desktop a:hover,
.mobile-nav a:hover,
.nav-desktop a.active,
.mobile-nav a.active {
  color: var(--white);
}

.nav-desktop a:hover::after,
.mobile-nav a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}


/* ==============================
   Navigation CTA
============================== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white) !important;
  box-shadow: 0 10px 30px rgba(201, 106, 43, 0.25);
}

.nav-cta::after {display: none !important;}


/* ==============================
   Mobile Menu Toggle
============================== */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) {top: 15px;}
.menu-toggle span:nth-child(2) {top: 22px;}
.menu-toggle span:nth-child(3) { top: 29px;}
.menu-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}


/* ==============================
   Mobile Menu
============================== */
.mobile-menu { display: none;}


/* ==============================
   Hero
============================== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #0e0e0f;
}

.hero .container {
  width: min(calc(100% - 0px), 1440px);
  margin: 0 auto;
  background: url(/AppData/images/main/main_visual.png) no-repeat center / cover;
}

.hero-overlay {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(15,15,16,0.78) 0%,
      rgba(15,15,16,0.64) 28%,
      rgba(15,15,16,0.24) 58%,
      rgba(15,15,16,0.08) 100%
    );
}

.hero-content {
  width: min(100%, 1200px);
  padding: 90px 60px;
  color: #fff;
}


/* ==============================
   Hero Certification
============================== */
.hero-cert-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.hero-cert-badge {
  position: absolute;
  top: 50px;
  right: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.hero-cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-cert-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-cert-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}

.hero-cert-title {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-cert-title .accent {
  color: var(--accent);
}

.hero-cert-desc {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}


/* ==============================
   Hero Brand
============================== */
.hero-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}


/* ==============================
   Hero Typography
============================== */
.hero-title {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
}

.hero-title .accent { color: var(--accent);}

.hero-desc {
  margin: 0 0 70px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.hero-desc strong {
  color: #fff;
}

.hero-slogan strong {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}


/* ==============================
   Hero Action
============================== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}


/* ==============================
   Hero Points
============================== */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
}

.hero-point::before {
  content: "•";
  color: #d99a68;
  font-size: 16px;
  line-height: 1;
}


/* ==============================
   About
============================== */
.about {background: #fff;}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-point-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.why-point-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-point-list p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: #222;
}


/* ==============================
   Point Icon
============================== */
.point-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #111;
}

.point-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}


/* ==============================
   Trust Box
============================== */
.trust-box {
  padding: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.trust-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.trust-title strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
}

.trust-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-desc p {
  color: #555;
  word-break: keep-all;
}

.trust-desc strong {
  font-size: 22px;
  font-weight: 700;
  color: #d67c2f;
}

/* ==============================
   Dreamstay Value
============================== */
.dreamstay-value {padding: 80px 0 0;}

.value-list {position: relative;}

.value-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 40px;
  padding: 45px 0;
  border-bottom: 1px solid #ececec;
  transition: .3s;
}

.value-item:first-child {border-top: 1px solid #ececec;}
.value-item:hover {transform: translateX(10px);}
.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 85px;
  width: 1px;
  height: calc(100% - 40px);
  background: #e5e5e5;
}

.value-num {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d67c2f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.value-title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.value-sub {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #d67c2f;
}

.value-desc {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  word-break: keep-all;
}


/* ==============================
   Highlights
============================== */
.highlights {
  background: linear-gradient(
    180deg,
    #fafafa 0%,
    #f4f4f4 100%
  );
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.highlight-card {
  position: relative;
  min-height: 180px;
  padding: 26px 18px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(201, 60, 100, 0.18);
  box-shadow: 0 14px 35px rgba(0,0,0,0.04);
  text-align: center;
}

.highlight-num {
  position: absolute;
  top: -12px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c92b5d;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(201, 43, 93, 0.2);
}

.highlight-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.highlight-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* ==============================
   Service
============================== */
.service {background: #fff;}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.service-card:hover {transform: translateY(-5px);}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111;
}

.service-card p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #555;
}

.service-card ul {
  margin: 0;
  padding-left: 12px;
  font-size: 14px;
  color: #666;
}

.service-card li + li { margin-top: 6px;}


/* ==============================
   Process
============================== */
.process-wrap {
  padding: 36px;
  border-radius: 32px;
  background: #111214;
  color: var(--white);
  box-shadow: var(--shadow);
}

.process-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.process-head h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.process-head p {
  margin: 0;
  max-width: 460px;
  color: #c6c6c6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.process-num {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.process-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--white);
}

.process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #d0d0d0;
}

.refund-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #efefef;
  font-size: 14px;
}

.refund-note strong { color: #fff;}


/* ==============================
   Contact
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}


/* ==============================
   Contact Info
============================== */
.contact-info {
  padding: 34px;
  border-radius: 28px;
  background: #111214;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.contact-info > p {
  margin: 0 0 24px;
  color: #d1d1d1;
}


/* ==============================
   Info List
============================== */
.info-list {display: grid; gap: 14px;}

.info-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--accent);
}

.info-item span,
.info-item p {
  font-size: 16px;
  color: #ececec;
}


/* ==============================
   Contact Notice
============================== */
.contact-info .info-notice {
  position: relative;
  padding: 28px 24px 28px 78px;
  border: 2px solid rgba(214,124,47,0.8);
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(214,124,47,0.08) 0%,
      rgba(255,255,255,0.03) 100%
    );

  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(214,124,47,0.08),
    0 8px 24px rgba(0,0,0,0.18);
}

.contact-info .info-notice::before {
  content: "!";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d67c2f;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(214,124,47,0.35);
}

.contact-info .info-notice p {
  position: relative;
  padding-left: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  word-break: keep-all;
}

.contact-info .info-notice p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d67c2f;
}

.contact-info .info-notice p + p {
  margin-top: 16px;
}

.contact-info .info-notice p:first-child {
  font-weight: 700;
  color: #fff;
}

.contact-info .info-notice strong {
  color: #d67c2f;
  font-weight: 700;
}


/* ==============================
   Contact Actions
============================== */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ==============================
   Form
============================== */
.contact-form {
  height: 100%;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--light-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.field input,
.field select {
  transition: 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
  transition: 0.2s ease;
}

.select-wrap {
  position: relative;
  display: inline-block;
}

.select-wrap select {
  padding: 0 40px 0 12px;
  appearance: none;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(60%) rotate(45deg);
  pointer-events: none;
}

/* ==============================
   Privacy
============================== */
.privacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.privacy-box input[type="checkbox"] {
  display: none;
}


/* ==============================
   Privacy Label
============================== */
.privacy-box label {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 34px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}

.privacy-box label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  transition: .25s;
}

.privacy-box input[type="checkbox"]:checked + label::before {
  background: #d67c2f;
  border-color: #d67c2f;
}

.privacy-box input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(45deg);
}


/* ==============================
   Privacy Button
============================== */
.privacy-open {
  flex-shrink: 0;
  height: 32px;
  padding: 0 18px;
  border: 1px solid #d67c2f;
  border-radius: 8px;
  background: #fff;
  color: #d67c2f;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.privacy-open:hover {
  background: #d67c2f;
  color: #fff;
}


/* ==============================
   Privacy List
============================== */
.privacy-box ul {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  background: #f5f5f5;
}

.privacy-box ul li {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

.privacy-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 1px;
  background: #666;
}


/* ==============================
   Form Info Text
============================== */
.info-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  font-size: 14px;
  color: #666;
}


/* ==============================
   Submit Buttons
============================== */
.submit-wrap .btn {
  position: relative;
}

.submit-wrap .btn-primary {
  width: 100%;
}

.btn-sns-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}


/* ==============================
   Kakao Button
============================== */
.submit-wrap .btn-kakao {
  padding-left: 36px;
}

.submit-wrap .btn-kakao:hover {
  background-color: #fae100;
  border: 1px solid #fae100;
  color: #381e1f;
}

.submit-wrap .btn-kakao::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background:
    url('/AppData/images/main/icon_kakao.png')
    no-repeat center center / contain;
}


/* ==============================
   Naver Talk Button
============================== */
.submit-wrap .btn-naver-talk {
  padding-left: 36px;
}

.submit-wrap .btn-naver-talk:hover {
  background-color: #3dae44;
  border: 1px solid #fff;
  color: #fff;
}

.submit-wrap .btn-naver-talk::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background:
    url('/AppData/images/main/icon_naver_talk.png')
    no-repeat center center / contain;
}

/* ===========================
   Footer
=========================== */
.footer {
  padding: 40px 0;
  color: #d7d7d7;
  background: #0f0f10;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  gap: 30px;
  align-items: start;
  grid-template-columns: 1.2fr 1fr;
}

.footer-brand {
  display: flex;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
}

.footer-brand img {
  max-height: 30px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-copy {
  max-width: 560px;
  margin: 0;
  color: #aaaaaa;
}

.footer-info {
  display: grid;
  gap: 5px;
  color: #c9c9c9;
  font-size: 14px;
}

.footer-info2 {
  margin-top: 40px;
  color: #c9c9c9;
  font-size: 14px;
}

.footer-info2 ul::after {
  content: "";
  display: block;
  clear: both;
}

.footer-info2 ul li {
  float: left;
}

.footer-info2 ul li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 8px;
  line-height: 12px;
  background-color: #c9c9c9;
}

.naver-talk:hover {
  color: #3dae44;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  color: #8d8d8d;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}


/* ===========================
   Layer Popup
=========================== */
.layer-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.layer-popup.active {
  display: block;
}

.layer-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.popup-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 480px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}

.popup-content {
  padding: 30px;
  text-align: center;
}

.complete-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: #fff7f3;
  border-radius: 50%;
}

.complete-icon::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 27px;
  width: 14px;
  height: 24px;
  border-right: 4px solid #c96a2b;
  border-bottom: 4px solid #c96a2b;
  transform: rotate(45deg);
}

.popup-title {
  margin-bottom: 16px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
}

.popup-text {
  margin-bottom: 20px;
  color: #444;
  font-size: 17px;
  line-height: 1.6;
}

.popup-sub-text {
  margin-bottom: 30px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.btn-confirm {
  width: 100%;
  height: 54px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #222;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}


/* ===========================
   Privacy Layer
=========================== */
.privacy-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.privacy-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.privacy-popup {
  position: relative;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transform: translate(-50%, -50%);
}

.privacy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.privacy-title {
  color: #222;
  font-size: 22px;
  font-weight: 700;
}

.privacy-close {
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -99999px;
  cursor: pointer;
  background: #f5f5f5 url(/AppData/images/common/close_bk.png) no-repeat center / 40%;
  border: 0;
  border-radius: 50%;
}

.privacy-body {
  max-height: calc(80vh - 80px);
  padding: 20px;
  overflow-y: auto;
}

.privacy-intro {
  margin-bottom: 3%;
  font-size: 15px;
}

.privacy-section {
  margin-bottom: 3%;
}

.privacy-section-title {
  color: #222;
  font-size: 18px;
  font-weight: 700;
}

.privacy-sub-title {
  margin: 15px 0 5px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.privacy-text {
  color: #555;
  font-size: 14px;
}

.privacy-list {
  margin-top: 5px;
  padding-left: 0;
}

.privacy-item {
  position: relative;
  padding-left: 14px;
  color: #555;
  font-size: 14px;
}

.privacy-item::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.privacy-note {
  margin-top: 10px;
  color: #888;
  font-size: 13px;
}

.privacy-info-list {
  margin-top: 12px;
}

.privacy-info-item {
  margin-bottom: 6px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-date {
  padding-top: 20px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid #eee;
}


/* ===========================
   Responsive
=========================== */

@media (max-width: 1180px) {
  .highlight-grid {grid-template-columns: repeat(3, 1fr);}
  .service-grid {grid-template-columns: repeat(2, 1fr);}
  .process-grid {grid-template-columns: repeat(3, 1fr);}

  .contact-grid,
  .footer-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .proof-item {
    gap: 30px;
    grid-template-columns: 160px 220px 1fr;
  }

  .proof-label {
    font-size: 24px;
  }

  .proof-summary {
    font-size: 20px;
  }

  .proof-desc {
    font-size: 16px;
  }

  .value-item {
    gap: 30px;
    grid-template-columns: 70px 220px 1fr;
  }

  .value-title {
    font-size: 24px;
  }

  .value-sub {
    font-size: 16px;
  }

  .value-desc {
    font-size: 15px;
  }
}

@media (max-width: 860px) {
  :root { --header-height: 74px;}

  .pc {display: none;}
  .mobile {display: block;}
  #top {padding-top: 75px;}
  .section {padding: 84px 0;}
  .header-inner {height: var(--header-height);}
  .nav-desktop {display: none;}
  .menu-toggle {display: inline-block;}
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    background: rgba(8,8,9,.92);
    backdrop-filter: blur(12px);
    transition: .25s ease;
  }

  .mobile-menu.open {
    top: 75px;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu-inner {
    width: min(calc(100% - 32px), 420px);
    margin: 96px auto 0;
    padding: 28px 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav a {
    width: fit-content;
    color: #fff;
    font-size: 18px;
  }

  .hero-overlay {
    min-height: auto;
    background: linear-gradient(
      180deg,
      rgba(15,15,16,.72) 0%,
      rgba(15,15,16,.58) 45%,
      rgba(15,15,16,.24) 100%
    );
  }

  .hero-content {padding: 72px 24px 54px;}
  .hero-title {font-size: 40px;}
  .hero-desc {max-width: 100%; font-size: 16px;}

  .highlight-grid,
  .service-grid,
  .about-card-grid,
  .form-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-head,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-inner > div {
    width: 100%;
  }

  .contact-info,
  .contact-form,
  .process-wrap {
    padding: 20px;
  }

  .hero-cert-badge {
    position: unset;
    float: right;
    width: 100px;
    height: 100px;
    border-radius: 18px;
  }

  .about-card .circle-bg {
    float: left;
    margin-bottom: 0;
  }

  .about-card .card-text {
    float: left;
    box-sizing: border-box;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .hero .container {background-position: right 40% center;}

  .why-point-list {align-items: flex-start; margin-top: 10px;}
  .why-point-list li {align-items: flex-start;}
  .why-point-list p {font-size: 18px;}

  .point-icon {margin-top: 2px;}

  .trust-box {padding: 22px; border-radius: 18px;}
  .trust-title strong {font-size: 22px;}

  .trust-desc p {font-size: 16px; line-height: 1.8;}

  .trust-desc strong {font-size: 18px;}

  .dreamstay-value {padding-top: 50px;}

  .value-item {
    gap: 12px;
    padding: 30px 15px;
    grid-template-columns: 1fr;
  }

  .value-item::after {display: none;}
  .value-title {font-size: 22px;}
  .value-desc {line-height: 1.8;}


  /* privacy */
  .privacy-box label{font-size:14px;}
	.privacy-open{
		height:28px;
		font-size:12px;
		padding:0 12px;
	}
	.privacy-box ul{padding:14px;}
	.privacy-box ul li{font-size:13px;line-height:1.7;}


  /* Layer Popup */
  .popup-title{font-size: 20px;}
  .popup-text{font-size: 16px;}
  .popup-sub-text{font-size: 14px;}
  
  /* privacy Layer */
  .privacy-head{padding: 10px 15px;}
  .privacy-title{font-size: 18px;}
  .privacy-close{width: 30px; height: 30px;}

  .privacy-body{padding: 15px;}
  .privacy-section-title{font-size: 16px;}

}

@media (max-width: 640px) {
  .hero {background-position: right -300px center;}

  .container,
  .header-inner {width: min(calc(100% - 28px), var(--max));}

  .logo {font-size: 16px;}
  .logo img { max-height: 20px;}

  .hero-overlay { min-height: 560px; align-items: flex-start;}
  .hero-content {padding: 58px 20px 40px;}
  .hero-title {font-size: 32px; line-height: 1.15;}
  .hero-desc {margin-bottom: 18px; font-size: 15px; line-height: 1.6;}
  .hero-desc br {display: none;}

  .hero-slogan strong {font-size: 18px;}

  .btn,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .btn-sns-area {
    margin-top: 15px;
    gap: 15px;
    grid-template-columns: 1fr;
  }

  /* footer */
  .footer-brand {font-size: 16px;  line-height: 20px; }
  .footer-brand img{max-height: 20px;}
  .footer-copy{font-size: 14px;}

  .footer-info2{margin-top: 5px;}
  .footer-info2 ul{display: grid; gap: 5px;}
  .footer-info2 ul li{float: none; clear: both;}
  .footer-info2 ul li + li::before{display: none; margin: 0;}
}