/* hbPnM — static rebuild of the Wix site (www.hbpnm.kr) */
:root {
  --green: #91c23a;
  --dark: #28251f;
  --grey: #94928f;
  --grey-light: #c9c9c7;
  --grey-dark: #5e5c57;
  --text: #2f2e2e;
  --bg-soft: #f7f7f7;
  --max: 980px;
  --font: "Helvetica Neue", Helvetica, Arial, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* ---------- Header ---------- */
.site-header { background: #fff; position: relative; z-index: 10; }
.site-header .logo { display: block; width: 114px; margin: 0 auto; padding: 26px 0 23px; }
.site-header .logo img { width: 114px; height: auto; }

.nav { background: var(--green); }
.nav ul {
  list-style: none; margin: 0 auto; padding: 0 16px;
  max-width: 1010px; display: flex;
}
.nav li { flex: 1; }
.nav a {
  display: block; text-align: center;
  padding: 10px 0; line-height: 26px;
  font-size: 16px; font-weight: 700; color: var(--dark);
  transition: color .2s;
}
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: var(--grey); }
.nav-toggle { display: none; }

/* ---------- Common ---------- */
.display {
  font-weight: 700; line-height: .8;
  letter-spacing: -0.05em;
}
.divider {
  width: 70px; height: 5px; background: var(--green);
  margin: 28px auto 0; border: 0;
}
.btn {
  display: inline-block; min-width: 204px; padding: 15px 30px;
  font-size: 16px; text-align: center;
  background: var(--green); color: var(--dark);
  transition: opacity .2s, background .2s;
}
.btn:hover { opacity: .85; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--sm { min-width: 142px; padding: 9px 20px; }

/* Parallax-style background sections */
.bg-fixed {
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) { .bg-fixed { background-attachment: scroll; } }

/* ---------- Home ---------- */
.hero-home {
  position: relative; min-height: 870px;
  display: flex; align-items: flex-end;
  background-color: #000;
}
.hero-home .band {
  width: 100%; background: rgba(0, 0, 0, .49);
  padding: 54px 16px 72px; text-align: center;
}
.hero-home h1 { font-size: 120px; color: #fff; }
.hero-home p { margin-top: 20px; font-size: 22px; color: var(--grey-light); }

.split { display: flex; min-height: 485px; }
.split > a {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 60px 16px; transition: filter .2s;
}
.split > a:hover { filter: brightness(1.08); }
.split .left { background: var(--dark); color: #fff; }
.split .right { background: var(--green); color: var(--dark); }
.split h2 { font-size: 88px; margin-bottom: 38px; }
.split p { font-size: 18px; line-height: 1.4; }

.best { padding: 125px 0 95px; text-align: center; }
.best h2 { font-size: 92px; color: var(--dark); }
.best .sub { margin-top: 26px; font-size: 22px; color: var(--grey); }
.best .products { margin: 130px auto 80px; }

.cta { background: var(--green); text-align: center; padding: 114px 16px; }
.cta h2 { font-size: 29px; line-height: 1.2; color: var(--dark); margin-bottom: 66px; }

.photo-band { height: 590px; background-color: var(--dark); }

/* ---------- Page hero (Packaging / nMore / About) ---------- */
.page-hero {
  min-height: 420px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; background-color: #000;
}
.page-hero h1 { font-size: 100px; color: #fff; text-align: center; }
.page-hero .divider { margin-top: 36px; }
.page-hero--short { min-height: 280px; }
.page-hero--short h1 { font-size: 90px; }

/* ---------- Product grid ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 221px);
  justify-content: center; gap: 164px 30px;
  padding: 130px 16px 150px;
}
.products-grid--tight { row-gap: 164px; }
.product { text-align: center; display: block; border-radius: 4px; transition: transform .2s; }
.product:hover { transform: translateY(-4px); }
.product:hover img { box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.product .spec-link { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: #3e5e22; border-bottom: 1px solid #91c23a; }
.product img { width: 221px; height: 221px; object-fit: cover; }
.product h3 { margin-top: 18px; font-size: 18px; font-weight: 700; color: var(--dark); }
.product p { margin-top: 6px; font-size: 13px; line-height: 1.5; color: var(--grey-dark); }
.catalog { text-align: center; padding-bottom: 90px; }

/* ---------- About ---------- */
.features {
  background: var(--bg-soft);
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: var(--max); margin: 0 auto; padding: 72px 16px 90px;
  text-align: center;
}
.features-wrap { background: var(--bg-soft); }
.feature img { height: 99px; width: auto; margin: 0 auto; object-fit: contain; }
.feature h3 { margin-top: 12px; font-size: 22px; font-weight: 700; color: var(--text); }
.feature p { margin-top: 10px; font-size: 16px; color: #a8a8a8; line-height: 1.3; }

.today { background: var(--bg-soft); padding: 40px 0 130px; }
.today h2 { font-size: 92px; text-align: center; color: var(--dark); line-height: .75; }
.today .letter {
  max-width: 661px; margin: 90px auto 0; padding: 0 16px;
  font-size: 18px; line-height: 1.6; color: var(--text);
}
.today .letter p + p { margin-top: 1.6em; }

.contact-section { padding: 0 16px 200px; background-color: var(--dark); }
.contact-box { max-width: var(--max); margin: 0 auto; display: flex; }
.contact-box .intro {
  flex: 1; background: var(--green); color: var(--text);
  padding: 108px 58px 60px;
}
.contact-box .intro h2 { font-size: 73px; text-align: center; letter-spacing: -0.03em; line-height: .9; margin-bottom: 70px; }
.contact-box .intro .lead { font-size: 20px; line-height: 1.5; }
.contact-box .privacy { margin-top: 36px; font-size: 13px; line-height: 1.7; color: #3e3d3a; }
.contact-box .privacy ul { margin: 6px 0 14px; padding-left: 18px; }
.contact-box .form-wrap { flex: 1; background: #fff; padding: 56px 68px 60px; }

.form label { display: block; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.form .field { margin-bottom: 18px; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form textarea {
  width: 100%; padding: 9px 10px; font: inherit; font-size: 15px;
  border: 1px solid #9a9a9a; border-radius: 0; background: #fff;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--green); outline-offset: -1px; border-color: var(--green); }
.form textarea { min-height: 92px; resize: vertical; }
.form .check { display: flex; gap: 10px; align-items: center; font-size: 14px; margin: 22px 0; }
.form .check input { width: 18px; height: 18px; accent-color: var(--dark); }
.form button {
  width: 100%; padding: 12px; border: 0; cursor: pointer;
  background: var(--dark); color: #fff; font: inherit; font-size: 15px;
}
.form button:hover { opacity: .9; }
.form .status { margin-top: 12px; font-size: 14px; min-height: 1.4em; }
.form .req { color: inherit; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); padding: 61px 16px 18px; text-align: center; scroll-margin-top: 0; }
.site-footer h2 { font-size: 92px; font-weight: 700; color: var(--green); letter-spacing: -0.05em; line-height: .8; }
.site-footer .sub { margin-top: 60px; font-size: 22px; color: var(--grey-light); }
.contact-info {
  max-width: var(--max); margin: 50px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  color: var(--grey); font-size: 16px; text-align: left;
}
.contact-info > div { display: flex; gap: 20px; align-items: flex-start; justify-content: center; }
.contact-info svg { flex: none; width: 26px; height: 26px; fill: var(--grey); }
.contact-info a:hover { color: #fff; }
.map { max-width: 837px; margin: 60px auto 0; height: 269px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.copyright { margin-top: 120px; font-size: 16px; color: var(--grey-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .bg-fixed { background-attachment: scroll; }
  .hero-home { min-height: 560px; }
  .hero-home h1 { font-size: 64px; }
  .hero-home p { font-size: 17px; }
  .split { flex-direction: column; }
  .split > a { min-height: 320px; }
  .split h2 { font-size: 56px; margin-bottom: 24px; }
  .best { padding: 80px 0 70px; }
  .best h2, .today h2, .site-footer h2 { font-size: 56px; }
  .best .products { margin: 60px auto 50px; }
  .photo-band { height: 320px; }
  .page-hero { min-height: 280px; }
  .page-hero h1, .page-hero--short h1 { font-size: 60px; }
  .page-hero--short { min-height: 220px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 221px)); gap: 60px 24px; padding: 70px 16px 80px; }
  .product img { width: 100%; height: auto; aspect-ratio: 1; }
  .features { grid-template-columns: 1fr; gap: 48px; }
  .today .letter { margin-top: 50px; font-size: 16px; }
  .contact-section { padding-bottom: 80px; }
  .contact-box { flex-direction: column; }
  .contact-box .intro, .contact-box .form-wrap { padding: 40px 24px; }
  .contact-box .intro h2 { font-size: 48px; margin-bottom: 30px; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-info > div { justify-content: flex-start; }
  .copyright { margin-top: 60px; font-size: 13px; }
}
@media (max-width: 600px) {
  .nav ul { flex-wrap: wrap; padding: 0; }
  .nav li { flex: 1 0 33.33%; }
  .nav a { padding: 6px 0; font-size: 14px; }
  .hero-home h1 { font-size: 44px; letter-spacing: -0.03em; }
  .split h2, .best h2, .today h2, .site-footer h2 { font-size: 42px; }
  .page-hero h1 { font-size: 46px; }
  .products-grid { gap: 40px 14px; }
  .product p { font-size: 12px; }
  .cta h2 { font-size: 22px; margin-bottom: 40px; }
  .site-footer .sub { margin-top: 30px; font-size: 17px; }
}

/* ---------- v1 이전본 추가 ---------- */
.form .hp { display: none; }
.notfound { text-align: center; padding: 140px 16px 160px; }
.notfound .display { font-size: 96px; color: var(--green); }
.notfound p { margin: 28px 0 36px; font-size: 17px; color: var(--grey-dark); }
