:root {
  --ink: #f4ece2;
  --ink-soft: #cbb6a4;
  --paper: #241811;
  --paper-soft: #2f2116;
  --paper-deep: #170f0a;
  --accent: #d99a3c;
  --accent-dark: #b97e26;
  --border: #40301f;
  --brand-yellow: #ffcc00;
  --brand-yellow-ink: #1c1109;
  --radius: 14px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-yellow);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-yellow-ink);
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand-name {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brand-yellow-ink);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--brand-yellow-ink);
  opacity: 0.75;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}

.nav a:hover { opacity: 1; }

/* Hero */
.hero {
  padding: 0 0 84px;
  background: var(--paper);
  text-align: center;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(23,15,10,0), var(--paper));
  pointer-events: none;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.eyebrow-dark { color: var(--accent-dark); }

.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 22px;
}

.hero-desc {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #1c1109;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Sections */
section { padding: 84px 0; }

.section-title {
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 10px;
}

.section-sub {
  color: var(--ink-soft);
  margin: 0 0 48px;
  font-size: 15px;
}

/* Business editorial list */
.business { background: var(--paper-soft); }
.business .eyebrow-dark { color: var(--accent); }
.business .section-sub { color: var(--ink-soft); }

.biz-list {
  border-top: 1px solid var(--border);
}

.biz-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.biz-row:hover {
  border-left-color: var(--accent);
  padding-left: 18px;
  background: rgba(217,154,60,0.05);
}

.biz-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  padding-top: 3px;
  flex: 0 0 36px;
}

.biz-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.biz-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 640px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 10px;
  vertical-align: middle;
}

/* Store */
.store {
  background: var(--paper-deep);
  color: #fff;
  text-align: center;
}
.store .section-title { color: #fff; }
.store .section-sub { color: var(--ink-soft); margin-bottom: 32px; }
.store .btn-primary {
  background: var(--accent);
  color: #1c1109;
}
.store .btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* Contact */
.contact-box {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 520px;
}
.contact-box p {
  margin: 0 0 10px;
  font-size: 15px;
}
.contact-box p:last-child { margin-bottom: 0; }
.contact-box strong {
  display: inline-block;
  width: 64px;
  color: var(--ink-soft);
  font-weight: 700;
}
.contact-box a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.contact-box a:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center;
}

/* Responsive */
@media (max-width: 560px) {
  .nav { gap: 16px; }
  .nav a { font-size: 11.5px; }
  .hero { padding: 0 0 48px; }
  .hero-media { max-height: 320px; }
  .hero-inner { padding-top: 36px; }
  section { padding: 60px 0; }
  .br-desktop { display: none; }
  .biz-row { gap: 16px; }
  .biz-num { flex-basis: 28px; }
}
