/* ═══════════════════════════════════════════════
   이윤선쿠킹스튜디오 — 리디자인
   참조: howfoodtruck.com
   컬러: 테라코타 #BE5928 (따뜻하고 식욕을 자극하는 어스톤)
   레이아웃: 사진 중심 + 대형 타이포 + 비대칭 그리드
   ════════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* ─── 변수 ─── */
:root {
  --primary:       #BE5928;
  --primary-dark:  #8B3D18;
  --primary-light: rgba(190, 89, 40, 0.09);
  --primary-pale:  #FDF3EC;

  --dark:   #1A1714;
  --dark-2: #242019;

  --bg:      #FAFAF7;
  --bg-alt:  #EDEBE4;
  --bg-warm: #F5F0E8;

  --text:       #1A1714;
  --text-muted: #7A746E;
  --text-on-dark: rgba(255,255,255,0.92);
  --text-dim:   rgba(255,255,255,0.48);

  --border:      rgba(26,23,20,0.08);
  --border-dark: rgba(255,255,255,0.09);

  --max-w: 1300px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── 리셋 ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

/* ─── 레이블 ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--primary);
  display: block;
}
.eyebrow.light { color: rgba(255,255,255,0.5); }
.eyebrow.light::before { background: rgba(255,255,255,0.3); }

/* ─── 타이포 ─── */
.display-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 480px;
}

/* ─── 버튼 ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-dark     { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-kakao    { background: #FEE500; color: #3A1D1D; }
.btn-kakao:hover { background: #f0d900; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--dark); }
.btn-white:hover { background: #f0f0f0; }
.btn-outline  { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 0.95rem; }

/* 전체 보기 링크 */
.view-all {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.view-all:hover { color: var(--primary); }
.view-all.light { color: rgba(255,255,255,0.45); }
.view-all.light:hover { color: #fff; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.site-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo img { height: 34px; width: auto; }
.site-logo span em {
  font-style: normal;
  color: var(--primary);
}

.site-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0 0.9rem;
  height: 68px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); }
.nav-link svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 68px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 0.5rem;
  min-width: 175px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; }
.dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text);
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--primary-light); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header-kakao {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  background: #FEE500; color: #3A1D1D;
  font-size: 0.78rem; font-weight: 700;
  transition: background 0.2s;
}
.header-kakao:hover { background: #f0d900; }
.header-quote {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  background: var(--primary); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  transition: background 0.2s;
}
.header-quote:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: 0.2s; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  z-index: 999;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* ════════════════════════════════════
   HERO — Full-bleed photo, text at bottom
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.6); }
.hero-content .eyebrow::before { background: rgba(255,255,255,0.4); }
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
}
.hero-phone {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ff5500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-phone::before {
  content: '';
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-phone:hover { color: var(--primary); }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ════════════════════════════════════
   BIG TEXT BAND — Huge text-only statement
════════════════════════════════════ */
.big-text-band {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.big-text-band .band-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.big-text-band .band-text {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--dark);
}
.big-text-band .band-text em {
  font-style: normal;
  color: var(--primary);
}
.big-text-band .band-sub {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.85;
}

/* ════════════════════════════════════
   STATEMENT — 대형 인용 섹션 (legacy, kept for other pages)
════════════════════════════════════ */
.statement-section {
  padding: 8rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.statement-text .big-quote {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}
.statement-text .big-quote em {
  font-style: normal;
  color: var(--primary);
}
.statement-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 420px;
}
.statement-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.statement-img img { width: 100%; height: 100%; object-fit: cover; }
.statement-img .img-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* ════════════════════════════════════
   SERVICE — 수평 리스트 스타일
════════════════════════════════════ */
.services-section {
  padding: 8rem 0;
  background: var(--bg-alt);
}
.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5rem;
}
.service-list {
  border-top: 1.5px solid var(--dark);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s;
}
.service-row:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0 -1.5rem;
  background: var(--primary-pale);
}
.service-row-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.service-row:hover .service-row-num { color: var(--primary); }
.service-row-name {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  transition: color 0.2s;
}
.service-row:hover .service-row-name { color: var(--primary); }
.service-row-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-row-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
  flex-shrink: 0;
}
.service-row:hover .service-row-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}
.service-row-arrow svg { width: 16px; height: 16px; }

/* ════════════════════════════════════
   PORTFOLIO — Full-bleed mosaic grid
════════════════════════════════════ */
.portfolio-section { padding: 0; }
.portfolio-header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.portfolio-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 310px 310px;
  gap: 3px;
  width: 100%;
}
.portfolio-mosaic .p-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #ddd;
  text-decoration: none;
  /* height는 grid-template-rows에 의해 결정 */
}
.portfolio-mosaic .p-card:first-child {
  grid-column: 1;
  grid-row: 1 / 3; /* 310 + 3(gap) + 310 = 623px */
}
.portfolio-mosaic .p-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.portfolio-mosaic .p-card:hover img { transform: scale(1.04); }
.p-card .p-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(28,26,23,0.8), transparent);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.p-card:hover .p-info { transform: translateY(0); }
.p-info strong { display: block; font-size: 0.95rem; font-weight: 700; }
.p-info span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.portfolio-more {
  text-align: center;
  padding: 3rem 0 7rem;
}

/* CATERING SECTION — legacy kept for catering.php subpage */
.catering-section { padding: 0; background: var(--bg); }
.catering-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 7rem 0 4rem;
}
.catering-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.catering-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: var(--bg-alt);
}
.catering-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 3/4; }
.catering-card:nth-child(2) { aspect-ratio: 4/3; }
.catering-card:nth-child(3) { aspect-ratio: 4/3; }
.catering-card:nth-child(4) { aspect-ratio: 4/3; }
.catering-card:nth-child(5) { aspect-ratio: 4/3; }
.catering-card:nth-child(6) { aspect-ratio: 4/3; }
.catering-card:nth-child(n+7) { display: none; }
.catering-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.4s ease; }
.catering-card:hover img { transform: scale(1.04); filter: brightness(0.9); }
.catering-card .card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(26,23,20,0.75) 0%, transparent 100%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.catering-card:hover .card-caption { transform: translateY(0); }
.card-caption h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.card-caption p  { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.catering-more-row { display: none; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.catering-more-row.is-visible { display: grid; }
.catering-more-card { aspect-ratio: 1/1; position: relative; overflow: hidden; display: block; background: var(--bg-alt); }
.catering-more-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.catering-more-card:hover img { transform: scale(1.05); }
.load-more-wrap { text-align: center; padding: 3rem 0 7rem; }
.btn-load-more {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.8rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-load-more:hover { border-color: var(--primary); color: var(--primary); }
.card-hidden { display: none !important; }
.card-body { padding: 0.85rem 0; }
.card-company { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.card-place, .card-event { font-size: 0.75rem; color: var(--text-muted); }
.card-overlay { position: absolute; inset: 0; }
.link-icon { display: none; }

/* ════════════════════════════════════
   STATS BAND — Dark, large number
════════════════════════════════════ */
.stats-band {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
/* 장점 헤더 */
.adv-header { margin-bottom: 4rem; }
.adv-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
  margin-top: 0.75rem;
}
/* 장점 4개 그리드 */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
}
.adv-item {
  padding: 2.5rem 2.5rem 0 0;
  border-right: 1px solid var(--border-dark);
}
.adv-item:last-child { border-right: none; padding-right: 0; }
.adv-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.adv-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.adv-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}
/* 구 stats 스타일 하위호환 유지 */
.stats-band-inner { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.stats-big-num { display: none; }
.stats-big-label { display: none; }
.stats-right { display: none; }
.stat-box-num { display: none; }
.stat-box-label { display: none; }

/* Legacy stats section kept for other pages */
.stats-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 2rem 3rem;
  border-right: 1px solid var(--border-dark);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ════════════════════════════════════
   BENTO PORTFOLIO
════════════════════════════════════ */
.bento-section { padding: 8rem 0; background: var(--bg-warm); }
.bento-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bento-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}
.bento-card:hover { transform: translateY(-8px); }
.bento-card .card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.bento-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bento-card:hover .card-img img { transform: scale(1.06); }
.bento-card:hover .card-img { box-shadow: 0 24px 60px rgba(0,0,0,0.13); }
.bento-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 0.2rem 0.55rem;
}
.bento-title { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 0.5rem; color: var(--dark); }
.bento-desc  { font-size: 0.83rem; font-weight: 300; color: var(--text-muted); margin-top: 0.3rem; }

/* ════════════════════════════════════
   PRICE
════════════════════════════════════ */
.price-section { padding: 8rem 0; background: var(--bg); }
.price-header { margin-bottom: 4rem; }
.price-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1rem;
  margin-top: 1.5rem;
}
.price-table { width: 100%; border-top: 1.5px solid var(--dark); }
.price-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.price-row:hover { background: var(--primary-pale); }
.price-row.featured { background: var(--primary); border-bottom-color: rgba(255,255,255,0.15); }
.price-row.featured:hover { background: var(--primary-dark); }
.price-cell {
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
}
.price-cell:not(:last-child) { border-right: 1px solid var(--border); }
.price-row.featured .price-cell:not(:last-child) { border-right-color: rgba(255,255,255,0.15); }
.price-amount { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--dark); }
.price-row.featured .price-amount { color: #fff; }
.price-amount sub { font-size: 0.75rem; font-weight: 400; letter-spacing: 0; margin-left: 0.1rem; }
.price-desc { font-size: 0.88rem; color: var(--text); line-height: 1.65; }
.price-row.featured .price-desc { color: rgba(255,255,255,0.9); }
.price-target { font-size: 0.82rem; font-weight: 300; color: var(--text-muted); }
.price-row.featured .price-target { color: rgba(255,255,255,0.6); }
.price-min-info {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-min-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem;
}
.price-min-value { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

/* ════════════════════════════════════
   PROCESS
════════════════════════════════════ */
.process-section { padding: 8rem 0; background: var(--bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4.5rem;
  border-top: 1px solid var(--border);
}
.process-step {
  padding: 2.5rem 1.5rem 0 0;
  position: relative;
}
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: block;
}
.step-title { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--dark); margin-bottom: 0.5rem; }
.step-desc  { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }

/* ════════════════════════════════════
   CLIENTS
════════════════════════════════════ */
.clients-section {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-header { text-align: center; margin-bottom: 3rem; }
.clients-header .eyebrow { justify-content: center; }
.clients-header .eyebrow::before { display: none; }
.clients-header .section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.clients-header .section-subtitle { margin: 0 auto; text-align: center; }
.clients-wrapper { overflow: hidden; position: relative; }
.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.clients-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.clients-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.clients-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-logos 32s linear infinite;
  width: max-content;
  align-items: center;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo { flex-shrink: 0; }
.client-logo img {
  height: 42px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.4;
  transition: all 0.3s ease;
}
.client-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* ════════════════════════════════════
   CTA BAND — howfoodtruck style, dark + big text
════════════════════════════════════ */
.cta-band {
  background: var(--dark);
  padding: 8rem 0;
  position: relative;
}
.cta-band-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-big-text {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
}
.cta-big-text em { font-style: normal; color: var(--primary); }
.cta-band-right { }
.cta-band-right p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.85;
}
.cta-band-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Legacy CTA section kept for other pages */
.cta-section {
  background: var(--primary);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero/hero-02.webp') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,0.45); padding: 5rem 0 2.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo {
  font-size: 1rem; font-weight: 800; color: #fff;
  margin-bottom: 1rem; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo img { height: 30px; width: auto; filter: brightness(2); }
.footer-logo span em { font-style: normal; color: var(--primary); }
.footer-desc { font-size: 0.82rem; line-height: 1.9; margin-bottom: 1.5rem; }
.footer-info { font-size: 0.78rem; line-height: 2.3; }
.footer-info a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-info a:hover { color: #fff; }
.footer-right { display: flex; flex-direction: column; gap: 2rem; }
.footer-nav-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 0.75rem; }
.footer-nav a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-sns { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.sns-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s;
}
.sns-btn:hover { background: var(--primary); color: #fff; }
.sns-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: #fff; }

/* ════════════════════════════════════
   FLOATING
════════════════════════════════════ */
.floating-wrap {
  position: fixed; right: 1.5rem; bottom: 2rem;
  z-index: 900;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.5rem;
}
.floating-btns { display: flex; flex-direction: column; gap: 0.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.floating-btns.is-open { max-height: 200px; }
.float-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  white-space: nowrap; transition: 0.2s; text-decoration: none;
}
.float-btn:hover { transform: translateY(-2px); }
.float-kakao { background: #FEE500; color: #3A1D1D; }
.float-tel   { background: var(--primary); color: #fff; }
.float-toggle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(190,89,40,0.4);
  transition: 0.2s;
}
.float-toggle:hover { background: var(--primary-dark); }
.float-toggle svg { width: 20px; height: 20px; transition: transform 0.3s; }
.float-toggle.is-open svg { transform: rotate(45deg); }

/* ════════════════════════════════════
   PAGE HERO (서브페이지)
════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 380px;
  padding: 10rem 2rem 5rem;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(26,23,20,0.65); }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.page-hero p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════
   CONTACT / ORDER
════════════════════════════════════ */
.contact-section { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 3rem; }
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: 0.25s;
}
.contact-card:hover { border-color: var(--primary); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.contact-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--primary); }
.contact-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-card p  { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1rem; }
.contact-link { font-size: 1.2rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.guide-box { background: var(--bg-alt); padding: 2.5rem 3rem; border: 1px solid var(--border); }
.guide-box h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 1.5rem; }
.guide-list { display: flex; flex-direction: column; gap: 0.85rem; }
.guide-item { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.9rem; color: var(--text-muted); }
.guide-dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; margin-top: 0.55rem; flex-shrink: 0; }

.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.order-card { background: var(--bg-alt); padding: 2rem; border: 1px solid var(--border); }
.order-card-title {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.order-card-title::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--primary); }
.order-list { display: flex; flex-direction: column; gap: 0.6rem; }
.order-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.order-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); margin-top: 0.55rem; flex-shrink: 0; }

.checklist { background: var(--dark); padding: 2.5rem 3rem; }
.checklist-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.checklist-title span { font-size: 0.62rem; font-weight: 700; background: var(--primary); color: #fff; padding: 0.2rem 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.check-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); font-size: 0.87rem; color: var(--text-on-dark); }
.check-box { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-box svg { width: 10px; height: 10px; color: var(--primary); }

/* ════════════════════════════════════
   SERVICE DETAIL
════════════════════════════════════ */
.service-detail-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-detail-img { overflow: hidden; aspect-ratio: 4/3; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.service-detail-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.6rem; }
.service-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.feature-check { width: 20px; height: 20px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-check svg { width: 11px; height: 11px; color: var(--primary); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 1.25rem 0; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-q:hover { color: var(--primary); }
.faq-q svg { width: 16px; height: 16px; transition: transform 0.2s; color: var(--text-muted); flex-shrink: 0; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.87rem; color: var(--text-muted); line-height: 1.85; }
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ════════════════════════════════════
   PRIVACY / NSEO / 404
════════════════════════════════════ */
.privacy-content { max-width: 800px; margin: 0 auto; padding: 5rem 2rem; }
.privacy-content h2 { font-size: 1.3rem; font-weight: 800; margin: 2.5rem 0 0.75rem; }
.privacy-content p, .privacy-content li { font-size: 0.9rem; line-height: 1.9; color: var(--text-muted); }
.privacy-content ul { padding-left: 1.25rem; list-style: disc; }
.privacy-content li { margin-bottom: 0.35rem; }
.privacy-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.privacy-content th, .privacy-content td { border: 1px solid var(--border); padding: 0.65rem 0.9rem; font-size: 0.85rem; }
.privacy-content th { background: var(--bg-alt); font-weight: 700; }
.nseo-banner { background: var(--bg-alt); padding: 2.5rem; text-align: center; margin-bottom: 2rem; border: 1px solid var(--border); }
.nseo-banner h3 { font-weight: 800; margin-bottom: 0.5rem; }
.nseo-banner p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.related-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.related-link { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 1.1rem; background: var(--bg); border: 1px solid var(--border); font-size: 0.83rem; font-weight: 600; color: var(--text); transition: 0.2s; border-radius: 2rem; }
.related-link:hover { border-color: var(--primary); color: var(--primary); }
.error-section { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.error-code  { font-size: 8rem; font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -0.05em; }
.error-title { font-size: 1.75rem; font-weight: 800; margin: 0.75rem 0; }
.error-desc  { color: var(--text-muted); margin-bottom: 2rem; }

/* ════════════════════════════════════
   SECTION 공통 spacing
════════════════════════════════════ */
section { padding: 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.flex-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-title.on-dark { color: var(--text-on-dark); }
.section-subtitle.on-dark { color: var(--text-dim); }
.eyebrow.on-dark { color: rgba(255,255,255,0.45); }
.eyebrow.on-dark::before { background: rgba(255,255,255,0.3); }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.85s var(--ease);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .statement-inner { grid-template-columns: 1fr; gap: 3rem; }
  .statement-img { display: none; }
  .service-row { grid-template-columns: 60px 1fr auto; }
  .service-row-desc { display: none; }
  .catering-grid { grid-template-columns: 1fr 1fr; }
  .catering-card:nth-child(1) { grid-row: 1 / 2; aspect-ratio: 4/3; }
  .price-row { grid-template-columns: 150px 1fr; }
  .price-row .price-cell:last-child { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .portfolio-mosaic { grid-template-columns: 1fr 1fr; }
  .portfolio-mosaic .p-card:first-child { grid-row: 1; min-height: auto; aspect-ratio: 4/3; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-right { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  /* 네비게이션 */
  .site-nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  /* 섹션 패딩 압축 */
  .big-text-band    { padding: 4rem 0; }
  .services-section { padding: 4rem 0; }
  .portfolio-header { padding: 3.5rem 1.25rem 2rem; }
  .portfolio-more   { padding: 2rem 0 4rem; }
  .stats-band       { padding: 4rem 0; }
  .bento-section    { padding: 4rem 0; }
  .bento-section-header { margin-bottom: 2rem; }
  .price-section    { padding: 4rem 0; }
  .process-section  { padding: 4rem 0; }
  .clients-section  { padding: 3rem 0; }
  .cta-band         { padding: 5rem 0; }

  /* 포트폴리오 모자이크 → 1열 */
  .portfolio-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 62vw);
  }
  .portfolio-mosaic .p-card:first-child { grid-column: 1; grid-row: 1; }

  /* 장점 그리드 → 2열 */
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-item { padding: 2rem 1.5rem 0 0; }
  .adv-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .adv-header { margin-bottom: 2.5rem; }

  /* 텍스트 밴드 */
  .big-text-band .band-text { font-size: clamp(2.5rem, 10vw, 4rem); }
  .big-text-band .band-sub  { font-size: 0.9rem; }

  /* CTA 밴드 */
  .cta-big-text { font-size: clamp(2.5rem, 9vw, 4rem); }

  /* 서비스 헤더 */
  .services-top { flex-direction: column; margin-bottom: 2.5rem; }

  /* 기타 */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .price-min-info { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-grid .check-item[style] { grid-column: 1; }
  .order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-content { padding: 0 1.25rem 3.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-row { grid-template-columns: 44px 1fr auto; gap: 0.75rem; padding: 1.5rem 0; }
  .service-row-name { font-size: 1rem; }
  .price-row { grid-template-columns: 1fr; }
  .price-cell { padding: 0.75rem 1rem; }
  .price-cell:first-child { padding-top: 1.25rem; }
  .price-cell:last-child  { padding-bottom: 1.25rem; }
  .price-cell:not(:first-child) { border-top: none; }
  .process-steps { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .adv-item { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 1.75rem 0; }
  .adv-item:last-child { border-bottom: none; }
  .cta-band-inner { padding: 0 1.25rem; }
}
