/* ═══════════════════════════════════════════════════════════════
   LANDING ESSENTIALS — 3-page compact layout
   ═══════════════════════════════════════════════════════════════ */

/* ── 퀵메뉴 (히어로 아래 바로가기) ──────────────────────────────────── */
.quickmenu {
  background: transparent;
  position: relative;
  z-index: 5;
  margin-top: -170px;
  padding-bottom: 8px;
}
.quickmenu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 0;
}
.quickmenu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 12px 24px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: 0 14px 34px -16px rgba(26, 41, 66, .18);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.quickmenu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -16px rgba(26, 41, 66, .26);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--line));
}
.quickmenu-ic {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--accent) 9%, #fff);
  color: var(--accent);
  margin-bottom: 4px;
}
.quickmenu-card:hover .quickmenu-ic {
  background: var(--accent);
  color: #fff;
}
.quickmenu-label {
  font-family: "Noto Sans KR", var(--font-body);
  font-size: 17px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em;
}
.quickmenu-sub { font-size: 13px; color: var(--ink-3); }

@media (max-width: 900px) {
  .quickmenu { margin-top: -72px; }
  .quickmenu-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 0; }
}
@media (max-width: 520px) {
  .quickmenu { margin-top: 0; }
  .quickmenu-grid { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .quickmenu-card { padding: 22px 10px 20px; }
}

/* ── Trust Strip (히어로 바로 아래 신뢰 배너) ─────────────────────────── */
.trust-strip {
  padding: clamp(36px, 5vw, 56px) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  position: relative;
  padding: 8px 0;
}
.trust-strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px; bottom: 12px;
  right: calc(-1 * clamp(10px, 1.5vw, 20px));
  width: 1px;
  background: var(--line-soft);
}
.trust-strip-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.trust-strip-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.45;
  word-break: keep-all;
  text-wrap: balance;
  margin-top: 4px;
}
.trust-strip-sub {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .trust-strip-item:not(:last-child)::after { display: none; }
  .trust-strip-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 12px; bottom: 12px;
    right: -10px;
    width: 1px;
    background: var(--line-soft);
  }
}
@media (max-width: 520px) {
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-item:nth-child(odd)::after { display: none; }
}

/* ── Why Us (3 key differentiators) ──────────────────────────────────── */
.whyus {
  padding: clamp(44px, 5vw, 64px) 0 clamp(70px, 10vw, 120px);
  background: #fff;
}
.whyus-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.whyus-head .vision-intro-eyebrow { justify-content: center; }
.whyus-head h2::after {
  content: none;
}
  width: 50px; height: 3px;
  margin: 20px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #3f7fd6, #2f9e8f);
}
.whyus-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 0;
  word-break: keep-all;
  text-wrap: balance;
}
.whyus-head h2 em { font-style: normal; color: var(--accent); }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.whyus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .25s ease;
  --wc: var(--accent);
  box-shadow: 0 12px 30px -18px rgba(26,41,66,.25);
}
.whyus-grid .whyus-card:nth-child(1) { --wc: #3f7fd6; }
.whyus-grid .whyus-card:nth-child(2) { --wc: #2f9e8f; }
.whyus-grid .whyus-card:nth-child(3) { --wc: #cf9134; }
.whyus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px color-mix(in oklab, var(--wc) 40%, transparent);
}
.whyus-card::before { content: none; }
.whyus-cardhead {
  background: linear-gradient(135deg, var(--wc), color-mix(in oklab, var(--wc) 72%, #000));
  color: #fff;
  padding: clamp(26px, 2.8vw, 32px) clamp(26px, 2.8vw, 32px) clamp(22px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.whyus-ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center;
}
.whyus-cardbody {
  padding: clamp(22px, 2.4vw, 28px) clamp(26px, 2.8vw, 32px) clamp(26px, 2.8vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.whyus-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.85);
}
.whyus-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0;
  min-height: calc(1.45em * 3);
  display: flex;
  align-items: flex-end;
  word-break: keep-all;
  text-wrap: balance;
}
.whyus-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--ink-2);
  margin: 0;
  word-break: keep-all;
  text-wrap: pretty;
}
.whyus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.whyus-pill {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--wc) 11%, #fff);
  color: color-mix(in oklab, var(--wc) 78%, #000);
  border: 1px solid color-mix(in oklab, var(--wc) 20%, transparent);
  transition: background .2s ease, transform .2s ease;
}
.whyus-pill::before { content: "#"; opacity: .6; margin-right: 1px; font-weight: 700; }
.whyus-card:hover .whyus-pill { background: color-mix(in oklab, var(--wc) 18%, #fff); }

@media (max-width: 980px) { .whyus-grid { grid-template-columns: 1fr; } }

/* ── 5대 영역 통합 프로그램 ──────────────────────────────────────────── */
.five-areas {
  padding: clamp(40px, 5vw, 64px) 0 clamp(40px, 5vw, 60px);
  background: #fff;
}
.five-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.five-head .vision-intro-eyebrow { justify-content: center; }
.five-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 0;
  word-break: keep-all;
  text-wrap: balance;
}
.five-head h2 em { font-style: normal; color: var(--accent); }
.five-head h2::after {
  content: none;
}
  width: 50px; height: 3px;
  margin: 20px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #4f74bf, #2f9e8f);
}
.five-head p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--ink-2);
  margin: 16px 0 0;
  word-break: keep-all;
}

.five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.five-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: clamp(28px, 2.8vw, 38px) clamp(22px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  --fc: var(--accent);
}
/* 영역별 고정 색상 (항상 표시) */
.five-grid .five-card:nth-child(1) { --fc: #4f74bf; background: #fff; border-color: #dbe5f6; }
.five-grid .five-card:nth-child(2) { --fc: #6a59b8; background: #fff; border-color: #e2dcf3; }
.five-grid .five-card:nth-child(3) { --fc: #c2547e; background: #fff; border-color: #f5dde6; }
.five-grid .five-card:nth-child(4) { --fc: #2f9e8f; background: #fff; border-color: #d3ece7; }
.five-grid .five-card:nth-child(5) { --fc: #c98a3c; background: #fff; border-color: #f3e4cd; }
.five-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--fc);
  opacity: 0;
  transition: opacity .28s ease;
}
.five-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -16px color-mix(in oklab, var(--fc) 50%, transparent);
  border-color: color-mix(in oklab, var(--fc) 40%, var(--line-soft));
}
.five-card:hover::before { opacity: 1; }
.five-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.five-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fc);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px -6px color-mix(in oklab, var(--fc) 60%, transparent);
  transition: transform .28s ease;
}
.five-icon svg { width: 38px; height: 38px; }
.five-card:hover .five-icon {
  transform: scale(1.06);
}
.five-no {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: color-mix(in oklab, var(--fc) 32%, transparent);
  letter-spacing: -0.03em;
}
.five-area {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 25px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.five-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--fc);
}
.five-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  word-break: keep-all;
  text-wrap: pretty;
}

@media (max-width: 1080px) {
  .five-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .five-grid { grid-template-columns: 1fr; }
}

/* ── Notice & Gallery board ──────────────────────────────────────────── */
.board-section {
  padding: clamp(60px, 8vw, 100px) 0 clamp(36px, 4vw, 52px);
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.board-col {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: 0 10px 30px -18px rgba(26,41,66,.18);
}
.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 0;
}
.board-eyebrow { display: none; }
.board-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  padding-left: 15px;
  padding-bottom: 0;
}
.board-title::after {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 22px; bottom: auto;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 60%, #7fb0ff));
}
.board-more {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 300;
  color: var(--ink-3);
  transition: all .2s ease;
  white-space: nowrap;
}
.board-more:hover { color: #fff; background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }

/* notice list */
.notice-board {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-board-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 10px;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
}
.notice-board-row::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 55%, var(--line));
}
.notice-board-row:hover {
  background: color-mix(in oklab, var(--accent) 6%, #fff);
  transform: translateX(3px);
}
.notice-board-row:hover::before { background: var(--accent); }
.notice-board-tag { display: none; }
.notice-board-empty { padding: 24px 4px; color: var(--ink-3); font-size: 14px; text-align: center; }
.notice-board-title {
  flex: 1;
  min-width: 0;
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-board-row:hover .notice-board-title { color: var(--accent); }
.notice-board-date {
  flex: 0 0 auto;
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

/* gallery board */
.gallery-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery-board-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-board-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.gallery-board-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.gallery-board-card:hover .gallery-board-img { border-color: var(--accent); }
.gallery-board-info {
  padding: 12px 2px 0;
}
.gallery-board-title {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.gallery-board-card:hover .gallery-board-title { color: var(--accent); }
.gallery-board-date {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .board-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 460px) {
  .gallery-board { grid-template-columns: 1fr; }
  .notice-board-title { white-space: normal; }
}

/* ── Landing Final CTA ──────────────────────────────────────────────── */
.landing-final-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.landing-final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 0%, color-mix(in oklab, var(--accent) 15%, transparent), transparent 70%),
    radial-gradient(40% 50% at 100% 100%, color-mix(in oklab, var(--leaf) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.landing-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.landing-cta-inner .vision-intro-eyebrow::before, .landing-cta-inner .vision-intro-eyebrow::after {
  background: color-mix(in oklab, var(--accent) 50%, #fff);
}
.landing-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--surface);
  margin: 0;
  word-break: keep-all;
  text-wrap: balance;
}
.landing-cta-inner p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.85;
  color: color-mix(in oklab, var(--surface) 70%, transparent);
  margin: 0;
  word-break: keep-all;
}

.landing-cta-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 24px 48px;
  border-radius: 20px;
  background: color-mix(in oklab, var(--accent) 90%, #fff);
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px color-mix(in oklab, var(--accent) 25%, transparent);
}
.landing-cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px color-mix(in oklab, var(--accent) 35%, transparent);
}
.landing-cta-phone .phone-icon {
  font-size: 24px;
  margin-bottom: 4px;
  opacity: .85;
}
.landing-cta-phone .phone-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.landing-cta-phone .phone-hours {
  font-size: 12px;
  opacity: .8;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.landing-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.landing-cta-actions .btn-ghost {
  background: color-mix(in oklab, var(--surface) 6%, transparent);
  border-color: color-mix(in oklab, var(--surface) 30%, transparent);
  color: var(--surface);
}
.landing-cta-actions .btn-ghost:hover {
  background: color-mix(in oklab, var(--surface) 14%, transparent);
  border-color: var(--surface);
}
