:root {
  /* 메인 컬러: 크래프트 브라운 / 서브: 진한 브라운블랙 / 배경: 베이지 / 포인트: 인쇄 레드 */
  --brown: #8b6a3e;
  --brown-soft: rgba(139, 106, 62, 0.12);
  --dark: #3a332b;
  --beige: #f5efe4;
  --red: #b7362d;

  --ink: #3a332b;
  --muted: #6f665a;
  --soft: #efe7d6;
  --paper: #ffffff;
  --line: #e3d8c6;
  --shadow: 0 18px 46px rgba(58, 51, 43, 0.14);
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "GMarketSans",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  word-break: keep-all;
}

main {
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-nowrap {
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #111111;
}

.brand-text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #3e4541;
  font-size: 1rem;
}

.site-nav a {
  padding: 10px 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--brown);
  border-radius: 8px;
  color: var(--brown);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  padding: 56px 0;
  background: var(--paper);
  color: var(--ink);
}

.hero-layout {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(139, 106, 62, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.36) 64%, rgba(255, 255, 255, 0.04) 100%),
    url("assets/main_hero.png") center / cover no-repeat;
  box-shadow: 0 28px 72px rgba(19, 28, 24, 0.14);
  overflow: hidden;
}

.hero-copy-panel {
  max-width: 560px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: 2.7rem;
  line-height: 1.14;
  font-weight: 900;
}

.hero-copy {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(183, 54, 45, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.quote-strip {
  border-bottom: 1px solid var(--line);
  background: var(--dark);
  color: #fff;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.quote-layout h2 {
  margin-top: 4px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.quote-layout .section-kicker {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.quote-contact {
  display: none;
}

.section {
  padding: 92px 0;
}

.section.muted {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.compact {
  margin-bottom: 0;
}

.section-head h2,
.contact-section h2 {
  margin-top: 8px;
  font-size: 2.25rem;
  line-height: 1.24;
}

.section-head .section-kicker {
  color: var(--brown);
  font-size: 2.25rem;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head p,
.contact-section p {
  margin-top: 14px;
  color: var(--muted);
}

.product-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(58, 51, 43, 0.06);
  overflow: hidden;
}

.product-photo {
  min-height: 230px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-bamboo .product-photo {
  background-image: url("assets/대나무젓가락.jpeg");
}

.product-wood .product-photo {
  background-image: url("assets/나무젓가락.jpeg");
}

.product-long-bamboo .product-photo {
  background-image: url("assets/8치_대나무젓가락.jpeg");
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px 24px;
}

.product-card.featured {
  border-color: rgba(139, 106, 62, 0.45);
  box-shadow: var(--shadow);
}

.product-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brown-soft);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.product-card h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  font-size: 1.55rem;
}

.product-amount {
  margin-left: auto;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-price {
  margin-top: 14px;
  color: var(--red);
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 900;
  text-align: right;
}

.product-min-order {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.product-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.product-card ul {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  list-style: none;
  color: #3e4541;
}

.product-card li {
  position: relative;
  padding-left: 18px;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
}

.notice-panel {
  grid-column: 1 / -1;
  display: flex;
  min-height: 132px;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid rgba(139, 106, 62, 0.38);
  border-radius: 8px;
  background: #faf3e6;
}

.notice-panel strong {
  color: var(--red);
  white-space: nowrap;
}

.notice-panel span {
  color: #4c4a46;
}

.product-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 22px 20px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(58, 51, 43, 0.06);
  color: var(--muted);
  list-style: none;
}

.product-note li {
  position: relative;
  margin: 0;
}

.product-note li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
}

.split-layout {
  display: grid;
  gap: 28px;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fit-list div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 118px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.fit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--brown-soft);
  color: var(--brown);
}

.fit-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.fit-list strong {
  display: block;
  font-size: 1.08rem;
}

.fit-list div > span:not(.fit-icon) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-bullets {
  margin: 0;
  padding: 0 22px 20px 42px;
  color: var(--muted);
}

.faq-bullets li + li {
  margin-top: 4px;
}

.contact-section {
  padding: 82px 0;
  background: var(--dark);
  color: #fff;
}

.contact-section .section-kicker {
  color: #d9b483;
  font-size: 2.25rem;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-info {
  display: grid;
  gap: 10px;
}

.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.contact-phone {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
}

.contact-mail {
  display: inline-block;
  margin-bottom: 8px;
  color: #e3c498;
  font-weight: 800;
}

.contact-actions {
  margin-top: 18px;
  justify-content: center;
}

.site-footer {
  padding: 56px 0 40px;
  color: #e7ddcd;
  background: #000000;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(231, 221, 205, 0.14);
}

.footer-brand strong {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer-brand p {
  margin-top: 10px;
  max-width: 320px;
  line-height: 1.6;
  color: #b0a48f;
}

.footer-biz {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  margin: 0;
}

.footer-biz div {
  display: grid;
  gap: 4px;
}

.footer-biz dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.footer-biz dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: #d6cbb8;
}

.footer-biz dd a {
  color: #d6cbb8;
}

.footer-biz dd a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: #8d8270;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(42, 36, 29, 0.14);
}

.mobile-cta a {
  display: grid;
  min-height: 58px;
  place-items: center;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-cta a:first-child {
  color: #fff;
  background: var(--red);
}

.mobile-cta a:last-child {
  color: #fff;
  background: var(--brown);
}

@media (min-width: 721px) {
  .mobile-cta {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding: 42px 0 46px;
  }

  .hero-layout {
    min-height: 460px;
    padding: 40px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 44%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0.04) 100%),
      url("assets/main_hero.png") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .product-bento,
  .fit-list,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-card,
  .notice-panel {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  body {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  h1,
  h2,
  h3,
  p,
  li,
  dd,
  summary {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .brand-text strong,
  .btn,
  .mobile-cta a,
  .quote-contact a,
  .contact-phone,
  .product-price {
    word-break: normal;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-call {
    display: none;
  }

  .hero {
    padding: 22px 0 30px;
  }

  .hero-layout {
    min-height: 600px;
    align-items: stretch;
    padding: 24px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.26) 72%, rgba(255, 255, 255, 0.04) 100%),
      url("assets/main_hero.png") 58% center / cover no-repeat;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .mobile-only {
    display: block;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    white-space: nowrap;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-contact {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .contact-section h2,
  .section-head .section-kicker,
  .contact-section .section-kicker {
    font-size: 1.82rem;
  }

  .product-card {
    grid-column: 1 / -1;
    grid-template-rows: 240px 1fr;
  }

  .product-photo {
    min-height: 240px;
  }

  .notice-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .fit-list,
  .product-bento {
    grid-template-columns: 1fr;
  }

  .notice-panel {
    grid-column: 1 / -1;
  }

  .contact-phone {
    font-size: 1.55rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-biz {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-cta {
    display: grid;
    position: static;
    box-shadow: none;
  }
}
