/* ============================================================
   type3 — Promenade Village
   헤더/푸터/메인만 적용 (내부 페이지는 type2.css 사용)
   모든 클래스는 t3- prefix (type2.css와 충돌 방지)
   ============================================================ */

:root {
  --t3-primary: #7A8B5C;
  --t3-primary-dark: #5C6B43;
  --t3-primary-soft: #ECEEE1;
  --t3-accent: #B8693E;
  --t3-text: #2A2D24;
  --t3-sub: #6E7068;
  --t3-bg: #F2EDE3;
  --t3-bg-deep: #E5DECE;
  --t3-card: #FFFFFF;
  --t3-border: #DDD4C0;
  --t3-border-light: #EAE3D2;
  --t3-dark: #2A2D24;
  --t3-shadow: 0 1px 3px rgba(42,45,36,0.06);
  --t3-shadow-md: 0 6px 20px rgba(42,45,36,0.10);
  --t3-shadow-hover: 0 12px 28px rgba(42,45,36,0.16);
}

body.design-type3 {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--t3-bg);
  color: var(--t3-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body.design-type3 *, body.design-type3 *::before, body.design-type3 *::after { box-sizing: border-box; }
body.design-type3 img { max-width:100%; display:block; }
body.design-type3 a { color: inherit; text-decoration: none; }

.t3-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== Section common (메인 페이지 전용) ===== */
.t3-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t3-primary);
}
.t3-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--t3-primary);
}
.t3-section-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 8px 0 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--t3-text);
}
.t3-section-title small {
  display:block; font-size:14px; color: var(--t3-sub);
  font-weight: 400; margin-top: 8px;
  letter-spacing: 0;
}

.t3-section { padding: 80px 0; }
.t3-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 16px; flex-wrap: wrap;
}
.t3-more {
  font-size: 13px; font-weight: 600;
  color: var(--t3-text);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--t3-text);
  border-radius: 999px;
  transition: all .2s;
}
.t3-more::after { content: '→'; transition: transform .25s; }
.t3-more:hover { background: var(--t3-text); color: #fff; }
.t3-more:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER (2-row)
   ============================================================ */

.t3-site-header {
  background: var(--t3-card);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--t3-border);
}

.t3-header-utility {
  background: var(--t3-dark);
  color: #C8CFC0;
  font-size: 12px;
  height: 36px;
  display: flex; align-items: center;
}
.t3-header-utility .t3-wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px;
}
.t3-util-info {
  display: inline-flex; gap: 18px; align-items: center;
}
.t3-util-info span {
  display: inline-flex; align-items: center; gap: 6px;
}
.t3-util-info span::before {
  content: ''; width: 4px; height: 4px;
  background: var(--t3-primary); border-radius: 50%;
}
.t3-util-links {
  display: inline-flex; gap: 16px; align-items: center;
}
.t3-util-links a {
  color: #C8CFC0;
  transition: color .15s;
}
.t3-util-links a:hover { color: #fff; }
.t3-util-divider {
  width: 1px; height: 12px; background: rgba(255,255,255,0.15);
}

.t3-header-main {
  height: 90px;
  display: flex; align-items: center;
  gap: 36px;
}
.t3-menu-trigger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--t3-border);
  border-radius: 10px;
  background: var(--t3-card);
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .15s;
}
.t3-menu-trigger:hover {
  border-color: var(--t3-primary);
  background: var(--t3-primary-soft);
}
.t3-menu-trigger span {
  display: block; width: 18px; height: 2px;
  background: var(--t3-text);
  border-radius: 2px;
}

.t3-logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.t3-logo-img { height: 56px; width: auto; display: block; }

.t3-gnb {
  display: flex; align-items: center;
  gap: 28px;
}
.t3-gnb a {
  font-size: 15px; font-weight: 500;
  color: var(--t3-text);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.t3-gnb a:hover { color: var(--t3-primary-dark); }
.t3-gnb a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--t3-primary);
  transform: scaleX(0); transform-origin: center;
  transition: transform .2s;
}
.t3-gnb a:hover::after { transform: scaleX(1); }

.t3-header-actions {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.t3-header-actions a {
  height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--t3-text);
  padding: 0 14px;
  font-size: 13px; font-weight: 500;
  transition: background .15s;
}
.t3-header-actions a:hover {
  background: var(--t3-primary-soft);
  color: var(--t3-primary-dark);
}
.t3-cart-num {
  min-width: 18px; height: 18px;
  background: var(--t3-accent); color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  margin-left: 4px;
}

/* Drawer (모바일 전용) */
.t3-drawer-toggle { display: none !important; }
.t3-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(42,45,36,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
  z-index: 90;
}
.t3-drawer-toggle:checked ~ .t3-drawer-overlay { opacity: 1; visibility: visible; }
.t3-drawer-panel {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 360px; max-width: 92vw;
  background: var(--t3-card);
  z-index: 91;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.t3-drawer-toggle:checked ~ .t3-drawer-panel { transform: translateX(0); }
.t3-drawer-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--t3-border-light);
  display: flex; justify-content: space-between; align-items: center;
}
.t3-drawer-logo { font-size: 18px; font-weight: 700; color: var(--t3-text); }
.t3-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--t3-bg);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
}
.t3-drawer-nav { padding: 12px 0; flex: 1; }
.t3-drawer-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px;
  font-size: 16px; font-weight: 500;
  color: var(--t3-text);
  transition: background .15s, color .15s, padding-left .2s;
}
.t3-drawer-nav a:hover {
  background: var(--t3-primary-soft);
  color: var(--t3-primary-dark);
  padding-left: 36px;
}
.t3-drawer-nav a::after { content: '→'; opacity: 0; transition: opacity .15s; }
.t3-drawer-nav a:hover::after { opacity: 1; }

.t3-drawer-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--t3-border-light);
  background: var(--t3-bg);
  font-size: 13px; color: var(--t3-sub);
}
.t3-drawer-foot p { margin: 4px 0; }
.t3-drawer-foot p strong { color: var(--t3-text); }

/* ============================================================
   HERO — 단일 와이드 배너
   ============================================================ */

.t3-hero {
  padding: 32px 0 56px;
  background: var(--t3-bg);
}
.t3-hero-banner {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(42,45,36,0.18);
}
.t3-hero-banner > img,
.t3-hero-banner > a > img {
  width: 100%; height: auto;
  display: block;
}

/* ============================================================
   체험 그리드 — 3열 세로 포스터 (이미지만)
   ============================================================ */

.t3-exp-wrap {
  background: var(--t3-card);
  border-top: 1px solid var(--t3-border);
  border-bottom: 1px solid var(--t3-border);
}

.t3-exp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.t3-exp-card {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  position: relative;
  background: var(--t3-bg-deep);
  transition: transform .3s, box-shadow .3s;
}
.t3-exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--t3-shadow-hover);
}
.t3-exp-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.t3-exp-card:hover img { transform: scale(1.05); }

/* ============================================================
   공지/소식 — 1:2 분할
   ============================================================ */

.t3-news-zone .t3-zone-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.t3-notice-frame {
  background: var(--t3-card);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--t3-border);
}
.t3-notice-frame .t3-frame-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--t3-text);
  margin-bottom: 8px;
}
.t3-notice-frame .t3-frame-head h3 {
  font-size: 20px; font-weight: 700; margin: 0;
}
.t3-notice-frame .t3-frame-head a {
  font-size: 12px; font-weight: 600; color: var(--t3-primary);
}
.t3-notice-frame ul {
  list-style: none; padding: 0; margin: 0;
}
.t3-notice-frame ul li { border-bottom: 1px dashed var(--t3-border-light); }
.t3-notice-frame ul li:last-child { border-bottom: none; }
.t3-notice-frame ul li a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  transition: padding .2s;
}
.t3-notice-frame ul li a:hover { padding-left: 6px; }
.t3-notice-frame ul li a:hover .t3-notice-num { background: var(--t3-primary); color: #fff; }
.t3-notice-num {
  width: 28px; height: 28px;
  background: var(--t3-bg);
  color: var(--t3-text);
  font-size: 12px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
.t3-notice-text {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.t3-notice-text-title {
  font-size: 14px; font-weight: 500; color: var(--t3-text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.t3-notice-text-date {
  font-size: 11px; color: var(--t3-sub);
}

.t3-stories-mix {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 460px;
}
.t3-stories-mix .t3-story-large { grid-row: 1 / 3; }
.t3-story-card {
  background: var(--t3-card);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  border: 1px solid var(--t3-border);
}
.t3-story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--t3-shadow-md);
}
.t3-story-img {
  overflow: hidden;
  flex-shrink: 0;
}
.t3-story-large .t3-story-img { aspect-ratio: 16/10; }
.t3-story-card:not(.t3-story-large) .t3-story-img { aspect-ratio: 16/9; }
.t3-story-img img {
  width:100%; height:100%; object-fit: cover;
  transition: transform .4s;
}
.t3-story-card:hover .t3-story-img img { transform: scale(1.05); }
.t3-story-body {
  padding: 14px 18px 18px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.t3-story-large .t3-story-body { padding: 20px 22px 22px; }
.t3-story-cat {
  font-size: 11px; font-weight: 700;
  color: var(--t3-accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: inline-block;
}
.t3-story-card h3 {
  font-size: 14px; font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.t3-story-large h3 { font-size: 19px; line-height: 1.35; -webkit-line-clamp: 3; }
.t3-story-excerpt {
  font-size: 13px; color: var(--t3-sub); line-height: 1.6;
  margin: 6px 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.t3-story-date {
  font-size: 11px; color: var(--t3-sub);
  margin-top: auto;
}

/* ============================================================
   후기 — 풀블리드 다크
   ============================================================ */

.t3-review-dark {
  background: var(--t3-dark);
  color: #E8E5DA;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.t3-review-dark::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,139,92,0.25), transparent 70%);
  pointer-events: none;
}
.t3-review-dark::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,105,62,0.16), transparent 70%);
  pointer-events: none;
}
.t3-review-dark .t3-wrap { position: relative; z-index: 1; }
.t3-review-dark .t3-eyebrow { color: #C8B98F; }
.t3-review-dark .t3-eyebrow::before { background: #C8B98F; }
.t3-review-dark .t3-section-title { color: #fff; }
.t3-review-dark .t3-section-title small { color: rgba(255,255,255,0.6); }
.t3-review-dark .t3-more {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.t3-review-dark .t3-more:hover {
  background: #fff;
  color: var(--t3-dark);
  border-color: #fff;
}

.t3-rq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t3-rq {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 28px 26px;
  position: relative;
  transition: background .25s, border-color .25s, transform .25s;
  display: block;
  color: inherit;
}
.t3-rq:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(122,139,92,0.5);
  transform: translateY(-3px);
}
.t3-rq .t3-qmark {
  font-family: serif;
  font-size: 60px;
  line-height: 1;
  color: var(--t3-primary);
  position: absolute; top: 16px; left: 22px;
  opacity: 0.6;
}
.t3-rq .t3-qbody {
  font-size: 15px; line-height: 1.75;
  color: #E8E5DA;
  margin: 14px 0 22px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative; z-index: 1;
}
.t3-rq .t3-qfoot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
}
.t3-rq .t3-qauthor {
  display: inline-flex; align-items: center; gap: 8px;
  color: #C8C5B8; font-weight: 600;
}
.t3-rq .t3-qavatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--t3-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.t3-rq .t3-qmeta { color: rgba(255,255,255,0.5); }

/* ============================================================
   BOTTOM BANNER (mainbanner banner_type='B')
   ============================================================ */

.t3-bottom-banner {
  padding: 48px 0 56px;
  background: var(--t3-bg);
  border-top: 1px solid var(--t3-border);
}
.t3-bb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
}
.t3-bb-card {
  display: block;
  width: 100%;
  background: var(--t3-card);
  border: 1px solid var(--t3-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.t3-bb-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--t3-shadow-md);
  border-color: var(--t3-primary);
}
.t3-bb-card img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  display: block;
  padding: 10px 12px;
}
@media (max-width: 1023px) {
  .t3-bb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .t3-bb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .t3-bottom-banner { padding: 32px 0 40px; }
}

/* ============================================================
   FOOTER — 라이트 (브랜드 row + 3컬럼)
   ============================================================ */

.t3-site-footer {
  background: var(--t3-bg-deep);
  color: var(--t3-text);
  padding: 56px 0 28px;
  font-size: 13px;
}
.t3-footer-brand-row {
  display: flex; align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--t3-border);
  flex-wrap: wrap;
}
.t3-footer-logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.t3-footer-brand-row p {
  margin: 0;
  font-size: 13px;
  color: var(--t3-sub);
  line-height: 1.7;
}
.t3-footer-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.4fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--t3-border);
}
.t3-footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--t3-text);
  margin: 4px 0 14px;
  letter-spacing: 0.02em;
}
.t3-footer-col ul {
  list-style: none; padding: 0; margin: 0;
}
.t3-footer-col ul li { margin-bottom: 8px; }
.t3-footer-col ul li a {
  font-size: 13px; color: var(--t3-sub);
  transition: color .15s;
}
.t3-footer-col ul li a:hover { color: var(--t3-primary-dark); }
.t3-footer-col p {
  margin: 0 0 6px;
  font-size: 13px; color: var(--t3-sub);
  line-height: 1.7;
}
.t3-footer-col p strong { color: var(--t3-text); font-weight: 600; margin-right: 4px; }
.t3-footer-addr {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--t3-border);
  line-height: 1.7;
}

.t3-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.t3-footer-legal {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px;
}
.t3-footer-legal a { color: var(--t3-sub); }
.t3-footer-legal a:hover { color: var(--t3-text); }
.t3-footer-legal a.strong { color: var(--t3-text); font-weight: 600; }
.t3-footer-copy { font-size: 12px; color: var(--t3-sub); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1023px) {
  .t3-hero-banner { border-radius: 18px; }
  .t3-news-zone .t3-zone-grid { grid-template-columns: 1fr; gap: 28px; }
  .t3-stories-mix { min-height: 0; }
  .t3-rq-grid { grid-template-columns: repeat(2, 1fr); }
  .t3-footer-top { grid-template-columns: 1fr 1fr; }
  .t3-footer-col-info { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .t3-header-utility .t3-util-info { display: none; }
  .t3-header-main { gap: 14px; height: 78px; }
  .t3-logo-img { height: 44px; }
  .t3-gnb { display: none; }
  .t3-menu-trigger { display: inline-flex; }

  .t3-section { padding: 56px 0; }
  .t3-section-title { font-size: 24px; }
  .t3-section-head { margin-bottom: 28px; }

  .t3-hero { padding: 20px 0 36px; }
  .t3-hero-banner { border-radius: 14px; }

  .t3-exp-grid .t3-exp-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .t3-exp-grid { gap: 16px; }

  .t3-stories-mix {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .t3-stories-mix .t3-story-large { grid-row: 1 / 2; grid-column: 1 / 2; }

  .t3-review-dark { padding: 64px 0; }
  .t3-rq-grid { grid-template-columns: 1fr; }

  .t3-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .t3-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .t3-wrap { padding: 0 18px; }
  .t3-rq { padding: 26px 22px 22px; }
}
