:root {
  --primary: #B4C7B0;
  --primary-dark: #8FA98A;
  --text: #222222;
  --text-muted: #6b6b6b;
  --border: #e5e2dc;
  --bg-soft: #f7f6f3;
  --card-radius: 1.25rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--text);
  word-break: keep-all;
  line-height: 1.6;
}
h1, h2, h3 { font-weight: 800; margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.section { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.section-sub { color: var(--text-muted); font-weight: 300; margin-top: 0.75rem; }

/* 섹션 레이블 — label-number 스타일 */
.section-label {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; color: var(--primary-dark);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--border); margin-left: 0.5rem; }

/* 버튼 — btn-pill */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 9999px; padding: 0.85rem 1.9rem; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s ease; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #1a2418; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-logo { font-weight: 800; font-size: 1.05rem; }
.site-nav { display: flex; gap: 1.6rem; font-size: 0.92rem; font-weight: 500; }
.site-header-cta { display: flex; gap: 0.6rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

@media (max-width: 768px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 1rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* 공지 안내 배너 */
.notice-bar {
  background: var(--bg-soft); border-bottom: 1px solid var(--border);
  overflow-x: auto; white-space: nowrap;
}
.notice-bar a {
  display: block; max-width: 1200px; margin: 0 auto; padding: 0.65rem 1.5rem;
  font-size: 0.85rem; color: var(--text-muted); text-align: center;
}
.notice-bar .notice-tag {
  display: inline-block; background: var(--primary); color: #1a2418;
  font-size: 0.65rem; font-weight: 700; padding: 0.1rem 0.5rem; border-radius: 0.25rem; margin-right: 0.5rem;
}

/* Hero — hero-split */
.hero-split { border-bottom: 1px solid var(--border); }
.hero-split-inner {
  max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-eyebrow { font-size: 0.8rem; font-weight: 700; color: var(--primary-dark); letter-spacing: 0.05em; text-transform: uppercase; }
.hero-split h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-top: 0.6rem; line-height: 1.35; }
.hero-desc { margin-top: 1rem; color: var(--text-muted); font-weight: 300; font-size: 1rem; }
.hero-btn-row { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.hero-package-preview { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.8rem; }
.hero-package-preview .item {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--border); border-radius: 0.9rem; padding: 0.8rem 1.1rem; font-size: 0.9rem;
}
.hero-package-preview .item strong { color: var(--primary-dark); }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hero-visual-grid img, .hero-visual-main img { border-radius: var(--card-radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--bg-soft); }
.hero-visual-caption { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero-split-inner { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
}

/* 패키지 카드 */
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 1024px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .package-grid { grid-template-columns: 1fr; } }
.package-card { border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; background: #fff; }
.package-card .card-thumb { aspect-ratio: 4/3; border-radius: 0.9rem; overflow: hidden; background: var(--bg-soft); margin: -1.5rem -1.5rem 0.5rem; }
.package-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.package-price { font-weight: 800; font-size: 1.5rem; color: var(--primary-dark); }
.package-price::after { content: " / 1인"; font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.package-target { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
.package-notice { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.5rem 1.75rem; background: var(--bg-soft); font-size: 0.88rem; color: var(--text-muted); }
.package-notice li { margin-bottom: 0.4rem; }

/* 케이터링 사례 카드 — grid-3 */
.catering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 1024px) { .catering-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catering-grid { grid-template-columns: 1fr; } }
.catering-card {
  border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden;
  transition: all 0.3s ease; display: block; background: #fff;
}
.catering-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: var(--primary); }
.catering-card .card-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.catering-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.catering-card:hover .card-thumb img { transform: scale(1.05); }
.catering-card .card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; background: var(--primary); color: #1a2418;
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 0.25rem; align-self: flex-start;
}
.card-title { font-weight: 800; font-size: 1rem; }
.card-sub { font-weight: 300; font-size: 0.875rem; color: var(--text-muted); }
.card-more { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.catering-card:hover .card-more { color: var(--primary-dark); }

/* 진행 절차 */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.5rem; }
.process-step .step-num { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); }
.process-step h3 { font-size: 1rem; margin-top: 0.6rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; font-weight: 300; }

/* 회사소개 */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; margin-top: 2rem; align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { margin-bottom: 1rem; color: var(--text-muted); font-weight: 300; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stats .stat { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.3rem; text-align: center; }
.about-stats .stat strong { display: block; font-size: 1.5rem; color: var(--primary-dark); }
.about-stats .stat span { font-size: 0.8rem; color: var(--text-muted); }

/* 배송지역 */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 640px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.5rem; }
.area-card h3 { font-size: 1.05rem; }
.area-card p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.5rem; font-weight: 300; }

/* FAQ */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem;
}
.faq-question .icon { transition: transform 0.25s ease; font-weight: 400; color: var(--text-muted); }
.faq-item.is-open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--bg-soft); }
.faq-answer p { padding: 0 1.4rem 1.1rem; font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
.faq-item.is-open .faq-answer { max-height: 300px; }

/* CTA 섹션 */
.cta-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; text-align: center; }
.cta-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; margin: 1.75rem 0; }
.cta-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); border: 1px solid var(--border); border-radius: 9999px; padding: 0.4rem 0.9rem; background: #fff; }
.cta-btn-row { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #1a1e1a; color: #d6d6d0; }
.site-footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .site-footer-inner { grid-template-columns: 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-brand { font-weight: 800; font-size: 1.05rem; color: #fff; }
.footer-desc { font-size: 0.85rem; color: #9c9c96; font-weight: 300; }
.footer-heading { font-weight: 700; font-size: 0.85rem; color: #fff; margin-bottom: 0.2rem; }
.footer-col a { font-size: 0.85rem; color: #b5b5af; }
.footer-col a:hover { color: var(--primary); }
.site-footer-legal { border-top: 1px solid #33362f; padding: 1.25rem 1.5rem; }
.site-footer-legal p { max-width: 1200px; margin: 0 auto; font-size: 0.75rem; color: #7d7d77; line-height: 1.7; }

/* Floating 버튼 */
.floating-bar { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; display: flex; flex-direction: column; gap: 0.6rem; }
.floating-btn {
  display: flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--border);
  border-radius: 9999px; padding: 0.65rem 1.1rem; font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12); color: var(--text);
}
.floating-btn:hover { border-color: var(--primary); color: var(--primary-dark); }

.img-placeholder { display: flex; align-items: center; justify-content: center; }
.img-placeholder span { font-size: 0.78rem; color: var(--text-muted); }

/* 상세페이지 공통 */
.detail-hero { position: relative; padding: 6rem 1.5rem 3rem; background-size: cover; background-position: center; color: #fff; }
.detail-hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.detail-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.detail-hero h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.detail-hero .back-link { display: inline-block; margin-bottom: 1rem; font-size: 0.85rem; opacity: 0.9; }
.info-bar { max-width: 1200px; margin: -2rem auto 0; position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
@media (max-width: 700px) { .info-bar { grid-template-columns: repeat(2, 1fr); } }
.info-bar .info-item { padding: 1.3rem; text-align: center; border-right: 1px solid var(--border); }
.info-bar .info-item:last-child { border-right: none; }
.info-bar .info-item span { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.info-bar .info-item strong { font-size: 0.95rem; }
.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .detail-gallery { grid-template-columns: repeat(2, 1fr); } }
.detail-gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: 1rem; background: var(--bg-soft); }
.quote-box { border-left: 3px solid var(--primary); padding: 1.25rem 1.5rem; background: var(--bg-soft); border-radius: 0 1rem 1rem 0; margin-top: 2rem; font-style: italic; }
.quote-box .signature { display: block; margin-top: 0.75rem; font-style: normal; font-weight: 700; font-size: 0.85rem; }
.summary-box { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.5rem 1.75rem; margin-top: 2rem; }
.summary-box li { margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
