:root {
  --ink: #101010;
  --paper: #f2f0eb;
  --accent: #d8ff3e;
  --line: rgba(16, 16, 16, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Noto Sans KR", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.announcement { padding: 10px 24px; color: #fff; background: var(--ink); text-align: center; font-size: 12px; letter-spacing: .08em; }
.site-header { height: 82px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.wordmark { font-size: 24px; font-weight: 800; letter-spacing: -.05em; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.site-nav a { transition: opacity .2s; }
.site-nav a:hover { opacity: .5; }
.shop-link { padding: 12px 18px; background: var(--accent); border-radius: 99px; }
.menu-button { display: none; background: transparent; border: 0; }
.hero { min-height: calc(100vh - 116px); display: grid; grid-template-columns: .85fr 1.15fr; border-bottom: 1px solid var(--line); }
.hero-copy { padding: 10vh 5vw 6vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.eyebrow { margin: 0 0 22px; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.hero h1 { margin: 0; font-size: clamp(64px, 8vw, 130px); line-height: .92; letter-spacing: -.075em; }
.hero-description { max-width: 390px; margin: 34px 0; font-size: 16px; line-height: 1.75; word-break: keep-all; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; font-size: 13px; font-weight: 700; border-radius: 99px; transition: transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--ink); }
.hero-visual { position: relative; min-height: 620px; overflow: hidden; background: #e8e6e0; }
.hero-visual img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.hero-visual:hover img { transform: scale(1.025); }
.hero-tag { position: absolute; top: 26px; left: 26px; padding: 9px 13px; font-size: 10px; font-weight: 700; letter-spacing: .12em; background: var(--accent); border-radius: 99px; }
.section { padding: 110px 4vw; }
.section-heading { margin-bottom: 42px; display: flex; align-items: flex-end; justify-content: space-between; }
.section-heading .eyebrow { margin-bottom: 10px; }
.section-heading h2, .shop-banner h2 { margin: 0; font-size: clamp(34px, 4vw, 62px); letter-spacing: -.06em; }
.section-heading > a { padding-bottom: 5px; font-size: 13px; border-bottom: 1px solid; }
.product-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 18px; }
.product-image { position: relative; display: block; overflow: hidden; background: #e6e4df; }
.product-image img { aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s ease; }
.product-image:hover img { transform: scale(1.03); }
.product-image span { position: absolute; top: 16px; left: 16px; padding: 8px 10px; color: #fff; background: var(--ink); font-size: 10px; letter-spacing: .12em; }
.product-info { padding: 18px 2px; display: flex; justify-content: space-between; gap: 20px; }
.brand { margin: 0 0 7px; color: #74736f; font-size: 10px; letter-spacing: .14em; }
.product-info h3 { margin: 0; font-size: 15px; font-weight: 500; word-break: keep-all; }
.product-info strong { flex: none; font-size: 14px; }
.coming-card { min-height: 100%; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: #dedbd4; }
.coming-card p { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.coming-card h3 { margin: auto 0; font-size: clamp(23px, 2.2vw, 38px); line-height: 1.25; letter-spacing: -.045em; word-break: keep-all; }
.coming-card span, .coming-card a { font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.coming-card-dark { color: #fff; background: var(--ink); }
.manifesto { padding: 15vw 8vw; color: #fff; background: var(--ink); }
.manifesto-copy { margin: 0; font-size: clamp(40px, 6vw, 100px); line-height: 1.15; font-weight: 600; letter-spacing: -.065em; }
.manifesto-copy em { color: var(--accent); font-style: normal; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6vw; }
.service-grid article { padding-top: 24px; border-top: 1px solid var(--ink); }
.service-grid span { font-size: 11px; }
.service-grid h3 { margin: 48px 0 16px; font-size: 22px; }
.service-grid p { margin: 0; color: #5f5e5a; font-size: 14px; line-height: 1.75; word-break: keep-all; }
.shop-banner { margin: 0 4vw 4vw; padding: 70px 5vw; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; color: var(--ink); background: var(--accent); }
.shop-banner .eyebrow { margin-bottom: 12px; }
.button-light { background: #fff; }
.site-footer { padding: 55px 4vw; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: start; gap: 30px; border-top: 1px solid var(--line); }
.site-footer > a:last-child { justify-self: end; font-size: 12px; font-weight: 700; }
.footer-info p { margin: 0 0 7px; color: #77756f; font-size: 11px; }
.footer-info strong { color: var(--ink); font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; padding: 10px 0 6px; }
.footer-links a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }

.info-main { padding: 80px 4vw 130px; }
.info-hero { max-width: 900px; padding: 70px 0 90px; }
.info-hero h1 { margin: 0 0 28px; font-size: clamp(54px, 8vw, 112px); line-height: .94; letter-spacing: -.07em; }
.info-hero p { max-width: 600px; margin: 0; color: #5f5e5a; line-height: 1.8; word-break: keep-all; }
.info-section { display: grid; grid-template-columns: minmax(180px, .65fr) 2fr; gap: 7vw; padding: 58px 0; border-top: 1px solid var(--ink); }
.info-section h2 { margin: 0; font-size: 14px; letter-spacing: .04em; }
.info-list { margin: 0; display: grid; gap: 18px; }
.info-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 28px; }
.info-list dt { color: #77756f; font-size: 13px; }
.info-list dd { margin: 0; font-size: 14px; line-height: 1.7; word-break: keep-all; }
.info-note { margin: 28px 0 0; padding: 20px; color: #565550; background: #e7e4dd; font-size: 13px; line-height: 1.7; word-break: keep-all; }

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .menu-button { position: relative; z-index: 3; display: grid; gap: 6px; padding: 10px; }
  .menu-button span:not(.sr-only) { width: 24px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 2; inset: 0; padding: 120px 8vw; display: none; flex-direction: column; align-items: flex-start; background: var(--paper); font-size: 26px; }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 70vh; padding: 12vh 6vw 8vh; }
  .hero h1 { font-size: clamp(62px, 19vw, 110px); }
  .hero-visual { min-height: auto; }
  .hero-visual img { aspect-ratio: 1 / 1; }
  .section { padding: 80px 5vw; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { grid-column: 1 / -1; }
  .coming-card { min-height: 380px; }
  .service-grid { grid-template-columns: 1fr; gap: 60px; }
  .service-grid h3 { margin-top: 30px; }
  .shop-banner { padding: 52px 7vw; align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > a:last-child { justify-self: start; }
  .info-main { padding: 55px 6vw 100px; }
  .info-hero { padding: 50px 0 70px; }
  .info-section { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  .announcement { font-size: 10px; }
  .hero-copy { min-height: 620px; }
  .hero-description { font-size: 14px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .coming-card { min-height: 310px; }
  .manifesto { padding: 110px 7vw; }
  .shop-banner { margin: 0; }
  .info-list > div { grid-template-columns: 1fr; gap: 5px; }
}
