/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d7a3c;
  --green-dark: #1f5c2c;
  --green-light: #d1fae5;
  --gold: #c9a84c;
  --dark: #080c0e;
  --dark2: #111418;
  --gray-900: #0f172a;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --r: 12px;
  --r-lg: 20px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; color: var(--gray-700); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn { display: inline-block; padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all 0.22s; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45,122,60,0.4); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-full { width: 100%; text-align: center; padding: 15px; }
.btn-kakao { display: block; background: #fee500; color: #3c1e1e; font-weight: 700; text-align: center; padding: 13px; border-radius: 10px; font-size: 15px; transition: background 0.2s; }
.btn-kakao:hover { background: #f5da00; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s; }
.header.scrolled { box-shadow: var(--shadow); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; gap: 28px; }
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.nav-menu { display: flex; gap: 2px; flex: 1; }
.nav-link { padding: 8px 13px; font-size: 14px; font-weight: 500; color: var(--gray-700); border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--green-light); color: var(--green); }
.nav-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════ */
.page-wrap { margin-top: var(--header-h); }
.page { display: none; min-height: calc(100vh - var(--header-h)); }
.page.active { display: block; animation: pageIn 0.35s ease both; }
@keyframes pageIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

.inner-page { max-width: 1200px; margin: 0 auto; padding: 72px 28px 100px; }
.page-header { text-align: center; margin-bottom: 60px; }
.page-label { font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--green); text-transform: uppercase; margin-bottom: 12px; }
.page-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--gray-900); margin-bottom: 12px; line-height: 1.3; }
.page-desc { font-size: 16px; color: var(--gray-500); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero { position: relative; width: 100%; height: calc(100vh - var(--header-h)); min-height: 560px; background: var(--dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.glow-1 { width: 700px; height: 700px; background: var(--green); opacity: 0.1; top: -250px; left: -200px; animation: gDrift 9s ease-in-out infinite; }
.glow-2 { width: 500px; height: 500px; background: var(--gold); opacity: 0.08; bottom: -150px; right: -100px; animation: gDrift 12s ease-in-out infinite reverse; }
@keyframes gDrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,25px) scale(1.1); } }

.hero-stage { position: relative; z-index: 2; width: 100%; max-width: 1100px; padding: 0 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }

/* 타이포 시퀀스 */
.typo-seq { display: flex; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
.tl { overflow: hidden; position: relative; }

.tl-label { margin-bottom: 24px; }
.reveal-box { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; padding: 7px 18px; border: 1px solid rgba(201,168,76,0.35); border-radius: 30px; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.tl-label.go .reveal-box { opacity: 1; transform: translateY(0); }

.tl-main { margin-bottom: 4px; }
.tl-accent { margin-bottom: 28px; }
/* 메인 카피 — 아래에서 위로 페이드인 */
.reveal-text {
  display: inline-block;
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.tl-main.go .reveal-text { opacity: 1; transform: translateY(0); }

/* 강조 카피 — 그린→골드→그린 그라데이션 흐름 */
.tl-accent .reveal-text {
  background: linear-gradient(90deg, #4aab5e 0%, var(--gold) 50%, #4aab5e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tl-accent.go .reveal-text {
  opacity: 1;
  transform: translateY(0);
  animation: gradientShift 5s ease infinite 0.5s;
}
.tl-accent .reveal-text::after { display: none; }

@keyframes gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.tl-sub { margin-bottom: 36px; }
.reveal-fade { display: inline-block; font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.5); font-weight: 400; opacity: 0; transform: translateY(12px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mobile-br { display: none; }
.tl-sub.go .reveal-fade { opacity: 1; transform: translateY(0); }

.tl-stats { display: flex; align-items: center; margin-bottom: 40px; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.tl-stats.go { opacity: 1; transform: translateY(0); }
.hstat { padding: 0 28px; text-align: center; }
.hstat:first-child { padding-left: 0; }
.hstat strong { display: block; font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hstat strong em { font-style: normal; font-size: 0.6em; color: var(--gold); }
.hstat span { font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 1.5px; text-transform: uppercase; }
.hstat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.tl-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.tl-btns.go { opacity: 1; transform: translateY(0); }

.btn-hero-p { display: inline-block; padding: 15px 34px; background: var(--green); color: var(--white); font-size: 15px; font-weight: 700; border-radius: 8px; transition: background 0.22s, transform 0.2s, box-shadow 0.22s; }
.btn-hero-p:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,60,0.45); }
.btn-hero-g { display: inline-block; padding: 14px 30px; background: transparent; color: rgba(255,255,255,0.65); font-size: 15px; font-weight: 500; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); transition: all 0.22s; }
.btn-hero-g:hover { color: var(--white); border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }

/* ═══════════════════════════════════════
   회사소개
═══════════════════════════════════════ */
#page-about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.about-map-col { border-radius: var(--r); overflow: hidden; min-height: 420px; }
.about-lead { font-size: 17px; color: var(--gray-700); line-height: 1.9; margin-bottom: 28px; }
.about-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.about-list li { font-size: 15px; color: var(--gray-700); padding-left: 22px; position: relative; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.about-contacts { display: flex; flex-direction: column; gap: 16px; }
.ac-row { display: flex; gap: 14px; align-items: flex-start; }
.ac-row > span { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ac-row strong { display: block; font-size: 12px; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.ac-row p { font-size: 15px; font-weight: 500; color: var(--gray-900); }
.about-awards-col { display: flex; flex-direction: column; gap: 16px; }
.award-card { background: var(--gray-100); border-radius: var(--r); padding: 24px; border-left: 4px solid var(--green); transition: transform 0.2s; }
.award-card:hover { transform: translateX(6px); }
.aw-year { font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 1px; margin-bottom: 6px; }
.aw-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.aw-desc { font-size: 14px; color: var(--gray-500); }

/* ═══════════════════════════════════════
   상품소개
═══════════════════════════════════════ */
#page-services { background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { background: var(--white); border-radius: var(--r-lg); padding: 30px 22px; position: relative; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.svc-card::before { content: attr(data-num); position: absolute; top: -8px; right: 14px; font-size: 56px; font-weight: 900; color: var(--gray-200); line-height: 1; transition: color 0.3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.svc-card:hover::before { color: var(--green-light); }
.svc-icon { font-size: 34px; margin-bottom: 14px; }
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.svc-link { font-size: 13px; font-weight: 700; color: var(--green); }
.svc-link:hover { text-decoration: underline; }

/* 상품 3종 카드 */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* 초기 숨김 */
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: scale(0.7) translateY(40px);
  transition: box-shadow 0.28s, border-color 0.28s;
  cursor: pointer;
}
/* 팝 등장 */
.prod-card.popped {
  animation: prodPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes prodPop {
  0%   { opacity: 0; transform: scale(0.65) translateY(40px); }
  60%  { transform: scale(1.06) translateY(-6px); }
  80%  { transform: scale(0.97) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
/* 애니메이션 종료 후 정착 상태 → 호버 가능 */
.prod-card.settled {
  opacity: 1;
  transform: scale(1);
  animation: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.prod-card.settled:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(45,122,60,0.14);
  border-color: var(--green);
}
.prod-card.settled.card-open:hover {
  transform: scale(1);
}

.prod-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
}

.prod-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-200);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.prod-icon {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1;
}

.prod-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

/* 짧은 태그라인 (항상 표시) */
.prod-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600, #4b5563);
  line-height: 1.7;
  margin-bottom: 16px;
  overflow: hidden;
  max-height: 200px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
}

/* 상세 설명 (클릭 시 표시) */
.prod-detail {
  font-size: 14px;
  color: var(--gray-600, #4b5563);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  flex: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease 0.1s, flex 0.4s ease;
}
.prod-detail.open {
  max-height: 600px;
  opacity: 1;
  flex: 1;
}
/* 카드 열림: 태그라인·체크리스트 숨김 */
.prod-card.card-open .prod-tagline {
  max-height: 0;
  opacity: 0;
  margin: 0;
}
.prod-card.card-open .prod-list {
  max-height: 0;
  opacity: 0;
  margin: 0;
  flex: 0;
}
.prod-card.card-open {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(45,122,60,0.18);
}

/* 체크리스트 */
.prod-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  overflow: hidden;
  max-height: 300px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
}
.prod-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.prod-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.prod-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border: 2px solid var(--green);
  transition: all 0.22s;
}
.prod-cta:hover {
  background: var(--green);
  color: var(--white);
}

/* 상품 라인업 */
.lineup-wrap { margin-top: 80px; padding-top: 72px; border-top: 1px solid var(--gray-200); }
.lineup-header { text-align: center; margin-bottom: 52px; }
.lineup-header h3 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 900; color: var(--gray-900); margin-bottom: 10px; }
.lineup-sub { font-size: 15px; color: var(--gray-500); }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.lp-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); padding: 28px 24px; display: flex; flex-direction: column; position: relative; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.lp-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(45,122,60,0.12); transform: translateY(-4px); }
.lp-badge { position: absolute; top: -1px; right: 20px; background: var(--gold); color: #3a2800; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; letter-spacing: 1px; }
.lp-featured { border-color: var(--green); background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); }
.lp-featured .lp-price strong { color: var(--green-dark); }
.lp-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.lp-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.lp-top h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.45; }
.lp-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }
.lp-meta li { display: flex; flex-direction: column; gap: 2px; }
.lp-meta li span { font-size: 11px; font-weight: 700; color: var(--gray-500); letter-spacing: 0.5px; text-transform: uppercase; }
.lp-meta li p { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.lp-price { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-top: 1px solid var(--gray-200); margin-bottom: 16px; }
.lp-price span { font-size: 12px; color: var(--gray-500); font-weight: 600; flex-shrink: 0; }
.lp-price strong { font-size: 22px; font-weight: 900; color: var(--green); line-height: 1; }
.lp-price strong em { font-style: normal; font-size: 14px; font-weight: 600; color: var(--gray-500); margin-left: 2px; }
.lp-cta { display: block; text-align: center; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; color: var(--green); border: 1.5px solid var(--green); transition: all 0.2s; }
.lp-cta:hover { background: var(--green); color: var(--white); }
.lineup-notice { background: var(--dark2); border-radius: var(--r-lg); padding: 36px 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.notice-icon { font-size: 28px; flex-shrink: 0; }
.lineup-notice p { flex: 1; font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; min-width: 240px; }
.lineup-notice p strong { color: var(--gold); font-weight: 700; }
.lineup-notice .btn { flex-shrink: 0; padding: 13px 28px; font-size: 14px; white-space: nowrap; }

/* ═══════════════════════════════════════
   연혁
═══════════════════════════════════════ */
#page-history { background: var(--dark2); }
#page-history .page-label { color: var(--gold); }
#page-history h2 { color: var(--white); }
#page-history .page-desc { color: rgba(255,255,255,0.5); }
.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 72px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green), var(--gold)); }
.tl-item { display: flex; gap: 36px; align-items: flex-start; margin-bottom: 32px; position: relative; }
.tl-dot { position: absolute; left: 65px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--gray-700); border: 2px solid var(--gray-500); flex-shrink: 0; }
.tl-item.hl .tl-dot { background: var(--green); border-color: var(--gold); box-shadow: 0 0 10px var(--gold); }
.tl-yr { width: 52px; flex-shrink: 0; font-size: 17px; font-weight: 900; color: var(--gold); text-align: right; padding-top: 2px; }
.tl-body { flex: 1; padding-left: 36px; }
.tl-body h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.tl-body p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#page-faq { background: var(--white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--gray-900); text-align: left; gap: 14px; transition: background 0.2s; }
.faq-q:hover { background: var(--gray-100); }
.faq-q.open { background: var(--green-light); color: var(--green); }
.faq-ico { font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .faq-ico { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--gray-500); line-height: 1.8; }
.faq-a.open { display: block; }

/* ═══════════════════════════════════════
   문의/의뢰
═══════════════════════════════════════ */
#page-contact { background: var(--gray-100); }
.contact-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: start; }
.contact-form-box { background: var(--white); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.fg input, .fg select, .fg textarea { padding: 11px 15px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--gray-900); outline: none; background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.fg textarea { resize: vertical; min-height: 120px; }
.contact-info-box { background: var(--dark2); border-radius: var(--r-lg); padding: 34px; color: white; }
.contact-info-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.qc { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--r); margin-bottom: 10px; transition: opacity 0.2s; }
.qc:hover { opacity: 0.85; }
.qc.phone { background: rgba(45,122,60,0.3); }
.qc.email { background: rgba(201,168,76,0.18); }
.qc.kakao { background: rgba(254,229,0,0.18); }
.qc > span { font-size: 22px; }
.qc strong { display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.qc p { font-size: 15px; font-weight: 700; }
.op-hours { margin: 22px 0; }
.op-hours h4 { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.op-hours table { width: 100%; border-collapse: collapse; }
.op-hours td { padding: 7px 0; font-size: 13px; color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.06); }
.op-hours td:last-child { text-align: right; font-weight: 500; color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════
   레퍼런스
═══════════════════════════════════════ */
#page-reference { background: var(--gray-100); }
.ref-tab-bar { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 40px; }
.ref-tab { padding: 13px 32px; font-size: 15px; font-weight: 600; color: var(--gray-500); background: none; border: none; cursor: pointer; position: relative; transition: color 0.2s; font-family: inherit; white-space: nowrap; }
.ref-tab::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--green); border-radius: 2px 2px 0 0; transform: scaleX(0); transition: transform 0.25s ease; }
.ref-tab:hover { color: var(--green); }
.ref-tab.active { color: var(--green); }
.ref-tab.active::after { transform: scaleX(1); }
.ref-panel { display: none; }
.ref-panel.active { display: block; }
.block-list { display: flex; flex-direction: column; gap: 10px; overflow: visible; }
.ref-block { width: 100%; border-radius: 12px; overflow: visible; border: 1px solid var(--gray-200); background: var(--white); opacity: 0; transform: translateY(20px); cursor: zoom-in; position: relative; z-index: 1; transform-origin: center top; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease; }
.ref-block img { width: 100%; height: auto; display: block; border-radius: 12px; }
.ref-block.show { animation: refBlockIn 0.45s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes refBlockIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.ref-block.expanded { transform: scale(3); z-index: 100; box-shadow: 0 16px 48px rgba(0,0,0,0.22); cursor: zoom-out; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: #050709; color: rgba(255,255,255,0.6); padding: 70px 0 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px 50px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 10px; display: block; }
.footer-brand > p { font-size: 13px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { font-size: 18px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.07); transition: background 0.2s; }
.footer-social a:hover { background: var(--green); }
.footer-links h5 { font-size: 13px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 0 28px; text-align: center; font-size: 12px; line-height: 2; color: rgba(255,255,255,0.28); }
.copyright { margin-top: 8px; color: rgba(255,255,255,0.18); }

/* ═══════════════════════════════════════
   진행방식
═══════════════════════════════════════ */
#page-process { background: var(--gray-100); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 160px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.ps-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.ps-icon {
  font-size: 40px;
  margin: 12px 0 16px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.75;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 22px;
  color: var(--green);
  padding-top: 60px;
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
  padding: 48px;
  background: var(--dark2);
  border-radius: var(--r-lg);
}
.process-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   FLOATING
═══════════════════════════════════════ */
.floating-btns { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.floating-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-lg); transition: transform 0.2s; }
.floating-btn:hover { transform: scale(1.1); }
.phone-btn { background: #22c55e; }
.consult-btn { background: var(--green); }

/* ═══════════════════════════════════════
   상품소개 카드 (pcard)
═══════════════════════════════════════ */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pcard {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.7) translateY(40px);
  transition: box-shadow 0.28s, border-color 0.28s;
}

.pcard.popped { animation: prodPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.pcard.settled {
  opacity: 1;
  transform: scale(1);
  animation: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pcard.settled:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(45,122,60,0.12);
  border-color: var(--green);
}

.pcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 0;
  margin-bottom: 14px;
}

.pcard-num { font-size: 12px; font-weight: 700; color: var(--gray-200); letter-spacing: 2px; }
.pcard-icon { font-size: 36px; line-height: 1; }

.pcard-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.3;
  padding: 0 28px;
  margin-bottom: 10px;
}

.pcard-tagline {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.75;
  padding: 0 28px;
  margin-bottom: 20px;
}

.pcard-body {
  position: relative;
  flex: 1;
  padding: 0 28px;
  min-height: 120px;
}

.pcard-points { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pcard-points li { font-size: 13px; color: var(--gray-700); padding-left: 18px; position: relative; line-height: 1.55; }
.pcard-points li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }

/* 호버 오버레이 — .pcard 기준으로 전체 덮음 */
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a5c2a 0%, #2d7a3c 100%);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
  z-index: 2;
}

.pcard.settled:hover .pcard-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.pov-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pov-targets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pov-targets li { font-size: 14px; color: rgba(255,255,255,0.92); padding-left: 18px; position: relative; line-height: 1.6; }
.pov-targets li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.btn-pov-detail {
  display: block;
  text-align: center;
  padding: 13px;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  margin-top: 4px;
}
.btn-pov-detail:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }

/* 카드 하단 */
.pcard-footer { display: flex; flex-direction: column; gap: 8px; padding: 20px 28px 28px; }

.btn-pf-consult {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  border: 2px solid var(--green);
  transition: all 0.2s;
}
.btn-pf-consult:hover { background: var(--green); color: var(--white); }

.btn-pf-detail {
  display: none; /* PC: 기본 숨김 — 호버 오버레이 안 버튼으로 대체 */
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  transition: all 0.2s;
}
.btn-pf-detail:hover { color: var(--gray-900); background: var(--gray-200); }

/* ═══════════════════════════════════════
   상품 상세페이지
═══════════════════════════════════════ */
#page-place-ranking,
#page-blog-review,
#page-place-care { background: var(--white); }

.dp-wrap { max-width: 860px; }

.dp-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 36px;
  transition: color 0.2s;
}
.dp-back:hover { color: var(--green); }

.dp-hero { padding: 40px 0 36px; border-bottom: 1px solid var(--gray-200); margin-bottom: 52px; }
.dp-hero .page-label { margin-bottom: 10px; }
.dp-hero h2 { margin-bottom: 14px; }
.dp-copy { font-size: 18px; color: var(--gray-500); line-height: 1.8; }

.dp-section { margin-bottom: 52px; }
.dp-section h3 { font-size: 20px; font-weight: 900; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--green-light); }
.dp-text { font-size: 15px; color: var(--gray-700); line-height: 2; }

.dp-recommend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rec-item { display: flex; align-items: flex-start; gap: 12px; background: var(--gray-100); border-radius: var(--r); padding: 18px 20px; }
.rec-item > span { font-size: 22px; flex-shrink: 0; }
.rec-item > p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

.dp-steps { display: flex; align-items: flex-start; flex-wrap: wrap; }
.dp-step { flex: 1; min-width: 140px; background: var(--gray-100); border-radius: var(--r); padding: 24px 18px; text-align: center; }
.dps-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--green); color: white; font-size: 12px; font-weight: 900; border-radius: 50%; margin-bottom: 12px; }
.dp-step h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.dp-step p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.dps-arrow { display: flex; align-items: center; padding: 0 6px; padding-top: 28px; font-size: 18px; color: var(--green); flex-shrink: 0; }

.dp-ref-btn { display: inline-block; margin-top: 16px; }

.detail-main { margin-top: var(--header-h); min-height: calc(100vh - var(--header-h)); background: var(--white); }

/* ═══════════════════════════════════════
   스크롤 리빌
═══════════════════════════════════════ */
.sr-target {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-target.sr-visible { opacity: 1; transform: translateY(0); }
.trust-grid .trust-card:nth-child(2) { transition-delay: 0.13s; }
.trust-grid .trust-card:nth-child(3) { transition-delay: 0.26s; }
.promise-list .promise-item:nth-child(2) { transition-delay: 0.13s; }
.promise-list .promise-item:nth-child(3) { transition-delay: 0.26s; }

/* ═══════════════════════════════════════
   섹션 A — 신뢰 3단
═══════════════════════════════════════ */
.trust-section { background: var(--gray-100); padding: 88px 0; }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }

.trust-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid var(--gray-200);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.trust-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(45,122,60,0.1); }

.trust-card-header {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-card-title { font-size: 18px; font-weight: 700; color: var(--gray-900); line-height: 1.55; }
.trust-card-title em { font-style: normal; color: var(--green); }

.trust-placeholder {
  width: 100%;
  flex: 1;
  min-height: 180px;
  background: var(--gray-100);
  border-radius: var(--r);
  border: 2px dashed var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-placeholder span { font-size: 12px; color: var(--gray-500); text-align: center; line-height: 1.7; }

.trust-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.8; }

/* 신뢰 카드 — 영상 공통 */
.trust-video-wrap {
  width: 100%;
  height: 240px;
  border-radius: var(--r);
  overflow: hidden;
}
.trust-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
}
/* 카드 1 표: 영상 비율에 맞춰 박스 크기 결정 */
.trust-video-wrap:not(.trust-video-card3) {
  height: auto;
  aspect-ratio: 430 / 258;
}
.trust-video-wrap:not(.trust-video-card3) video {
  object-fit: fill;
}
/* 카드 3 사무실: 꽉 채우기 */
.trust-video-card3 video {
  object-fit: cover;
  object-position: center;
}
.trust-card-desc strong { color: var(--green-dark, #1f5c2c); font-weight: 700; }
.trust-card-label { font-size: 14px; font-weight: 600; color: var(--gray-700); line-height: 1.6; }
.trust-card-label small { font-size: 12px; color: var(--gray-500); font-weight: 400; }

.trust-stat-box {
  font-size: 38px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.35;
  text-align: center;
  padding: 18px 0;
  border-top: 2px solid var(--green-light);
  border-bottom: 2px solid var(--green-light);
}

.trust-highlight-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 24px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   섹션 B — 3가지 약속
═══════════════════════════════════════ */
.promise-section { background: var(--dark2); padding: 88px 0; }
.promise-inner { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.promise-header { text-align: center; margin-bottom: 52px; }
.promise-header h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: var(--white); line-height: 1.5; margin-bottom: 14px; }
.promise-sub { font-size: 14px; color: rgba(255,255,255,0.4); }

.promise-list { display: flex; flex-direction: column; gap: 18px; }
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--green);
  border-radius: var(--r);
  padding: 24px 28px;
  transition: background 0.22s, border-left-color 0.22s;
}
.promise-item:hover { background: rgba(45,122,60,0.12); border-left-color: var(--gold); }
.promise-num { font-size: 28px; font-weight: 900; color: var(--green); flex-shrink: 0; line-height: 1; min-width: 38px; }
.promise-item p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.85; padding-top: 2px; }
.promise-item p strong { color: var(--gold); font-weight: 700; }

@media (max-width: 768px) {
  .trust-section, .promise-section { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .trust-video-wrap { height: 200px; }
  .promise-item { flex-direction: column; gap: 8px; }
  .promise-num { font-size: 22px; }
  .promise-item p { font-size: 15px; }
}

/* 서비스 소개 하이라이트 카드 */
.dp-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.dp-hl-card { background: var(--gray-100); border-radius: var(--r); padding: 22px 20px; border-left: 3px solid var(--gray-200); transition: border-color 0.2s; }
.dp-hl-card:hover { border-color: var(--green); }
.dp-hl-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; line-height: 1.4; }
.dp-hl-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dp-hl-card ul li { font-size: 13px; color: var(--gray-700); padding-left: 14px; position: relative; line-height: 1.65; }
.dp-hl-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--green); font-weight: 900; font-size: 16px; line-height: 1.2; }
.dp-hl-accent { background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%); border-left-color: var(--green); }
.dp-hl-accent h4 { color: var(--green-dark, #1f5c2c); }

/* 상품 구성 */
.dp-elements { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.dp-el-item { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r); padding: 22px 14px; text-align: center; transition: border-color 0.22s, box-shadow 0.22s; }
.dp-el-item:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(45,122,60,0.1); }
.dp-el-icon { font-size: 26px; margin-bottom: 10px; line-height: 1; }
.dp-el-name { font-size: 13px; font-weight: 700; color: var(--gray-900); line-height: 1.55; margin-bottom: 8px; }
.dp-el-caption { font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; }

.dp-cta { background: var(--dark2); border-radius: var(--r-lg); padding: 48px 40px; text-align: center; }
.dp-cta h3 { font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.dp-cta p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pcard-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .hero-stage { padding: 0 24px; }
  .reveal-text { font-size: clamp(32px, 8.5vw, 48px); letter-spacing: -0.5px; word-break: keep-all; }
  .reveal-fade { font-size: 13px; word-break: keep-all; }
  .mobile-br { display: block; }
  .tl-btns { flex-direction: column; }
  .btn-hero-p, .btn-hero-g { width: 100%; text-align: center; }
  .hstat { padding: 0 14px; }
  .nav-menu, .nav-buttons { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); z-index: 999; }
  .hamburger { display: flex; }
  .inner-page { padding: 48px 20px 72px; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .about-map-col { min-height: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .lineup-notice { flex-direction: column; text-align: center; padding: 28px 24px; }
  .lineup-notice .btn { width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { left: 58px; }
  .tl-dot { left: 51px; }
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; }
  .process-arrow { padding: 8px 0; transform: rotate(90deg); align-self: center; }
  /* 모바일: 오버레이 숨기고 하단 버튼 표시 */
  .pcard-grid { max-width: 100%; }
  /* 모바일: 오버레이 탭 토글 (display:none → opacity로 전환) */
  .pcard-overlay {
    display: flex;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
  .pcard.mobile-active .pcard-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  /* 오버레이 안 버튼은 모바일에서 숨김 (추천 대상 텍스트만 표시) */
  .btn-pov-detail { display: none; }
  /* 상세페이지 버튼 항상 오버레이 위에 표시 */
  .pcard-footer {
    position: relative;
    z-index: 3;
  }
  .btn-pf-detail { display: block; }
  /* 모바일: 상세페이지 */
  .dp-highlights { grid-template-columns: 1fr; }
  .dp-recommend { grid-template-columns: 1fr; }
  .dp-steps { flex-direction: column; align-items: stretch; }
  .dp-step { width: 100%; min-width: 0; flex: none; }
  .dps-arrow { transform: rotate(90deg); align-self: center; padding: 6px 0; }
  .dp-wrap { max-width: 100%; }
  .dp-hero { padding: 28px 0 24px; }
  .dp-cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 22px; }
}
