:root {
  --h: 272;
  --ink:      hsl(var(--h) 20% 13%);
  --paper:    hsl(var(--h) 28% 98%);
  --accent:   hsl(var(--h) 58% 40%);
  --accent-2: hsl(var(--h) 38% 90%);
  --line:     hsl(var(--h) 16% 84%);
  --muted:    hsl(var(--h) 10% 40%);
  --h1-size: 30px;
  --ls: -0.01em;
  --lh: 1.7;
  --fs-body: 15.5px;
  --hw: 700;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard",-apple-system,BlinkMacSystemFont,"Apple SD Gothic Neo","Malgun Gothic",system-ui,sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh);
  overflow-x: hidden;
}
h1, h2, h3 { color: var(--accent); line-height: 1.35; margin: 0 0 0.6em; letter-spacing: var(--ls); }
h1 { font-size: var(--h1-size); font-weight: 700; }
h2 { font-size: 1.5rem; margin-top: 0; font-weight: var(--hw); }
h3 { font-size: 1.15rem; margin: 0 0 0.5em; font-weight: var(--hw); }
p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: #fff; }
.header-inner { max-width: 980px; margin: 0 auto; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 800; font-size: 1.05rem; color: var(--accent); text-decoration: none; }
.nav-link { font-size: 0.9rem; color: var(--muted); text-decoration: none; font-weight: 600; }
.nav-link:hover { text-decoration: underline; }


/* Hero */
.hero { padding: 48px 0 32px; background: linear-gradient(180deg, var(--accent-2), var(--paper)); }
.hero-inner { }
.hero-lede { font-size: 1.05rem; color: var(--ink); max-width: 58ch; margin: 0; }
.pg-equipment .hero-inner { border-left: 1px solid var(--line); padding-left: 24px; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 14px 20px 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--accent); font-weight: 600; }

/* Sections */
.section { padding: 40px 0; border-bottom: 1px solid var(--line); }
.section:last-of-type { border-bottom: none; }
.section p { max-width: 74ch; }
.pg-equipment .section.core h3, .pg-equipment .section.core h2 { text-transform: none; } .pg-equipment .section.core .container { padding-left: 8px; border-left: 3px solid var(--accent-2); }

/* Table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
table { width: 100%; min-width: 480px; border-collapse: collapse; background: #fff; }
caption { text-align: left; padding: 12px 16px; font-size: 0.85rem; color: var(--muted); background: var(--accent-2); }
th, td { padding: 12px 16px; text-align: left; border-top: 1px solid var(--line); font-size: 0.9rem; }
thead th { background: var(--accent); color: #fff; font-weight: 600; }
tbody th[scope="row"] { color: var(--accent); font-weight: 700; }

/* Photo row */
.photo-row { display:flex;justify-content:center;gap:16px;margin:0 auto;max-width:640px }
.photo-row figure{flex:1 1 0;margin:0;min-width:0}
.photo-row img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;border-radius:8px}
@media(max-width:600px){.photo-row{gap:8px}}

/* CTA */
.cta { background: var(--accent-2); }
.cta .container { padding: 36px 20px; }
.cta-lead { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0 0 0.5em; }
.cta-sub { font-size: 0.92rem; color: var(--muted); max-width: 60ch; margin: 0; }
.pg-equipment .cta .container { text-align: left; }

/* Footer */
.site-footer { background: hsl(var(--h) 22% 18%); padding: 36px 0; }
.site-footer .brand { color: #fff; font-weight: 800; font-size: 1.05rem; margin: 0 0 12px; }
.site-footer .biz p { color: hsl(var(--h) 12% 78%); font-size: 0.85rem; margin: 0 0 4px; }
.site-footer .biz a { color: hsl(var(--h) 12% 78%); }
.site-footer .copy { color: hsl(var(--h) 10% 55%); font-size: 0.8rem; margin: 14px 0 0; }
.pg-equipment .site-footer .container { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; } .pg-equipment .site-footer .biz { display: contents; }
