/* ============================================================
   Project: Calida Lab umbrella landing (www.calidalab.ai)
   Created: 2026-07-05
   Last Modified: 2026-07-05
   Author: Kennt Kim · Calida Lab
   ------------------------------------------------------------
   Shared stylesheet for the landing (EN `/` and KO `/ko/`).
   Dark theme: black + amber. Fonts: Bricolage Grotesque + Inter
   (Latin) with Pretendard as the Korean fallback.
   ============================================================ */

:root {
  --bg:          #0a0a0a;
  --bg-2:        #17171a;
  --ink:         #ececec;
  --ink-2:       #b3b3b3;
  --muted:       #9c9c9c;
  --faint:       #5c5c5c;
  --line:        #222222;
  --line-strong: #383838;
  --accent:      #f5b301;
  --accent-2:    #ffcb4d;
  --maxw:        920px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
::selection { background: rgba(245,179,1,0.32); color: #0a0a0a; }

h1, h2, .brico {
  font-family: "Bricolage Grotesque", "Pretendard Variable", "Inter", sans-serif;
  letter-spacing: -0.015em;
}

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

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}

/* ---- Masthead ---- */
.mast {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 28px 0;
}
.mast__mark {
  font-family: "Bricolage Grotesque", "Pretendard Variable", sans-serif;
  font-weight: 800; font-size: 21px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 11px;
}
.mast__dot { width: 12px; height: 12px; border-radius: 50%; border: 3px solid var(--accent); flex: none; }
.mast__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.mast__lang { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; font-size: 13px; font-weight: 500; }
.mast__lang a { color: var(--muted); text-decoration: none; transition: color .15s; }
.mast__lang a:hover { color: var(--ink); }
.mast__lang a.is-active { color: var(--accent); font-weight: 600; }
.mast__meta {
  text-align: right; font-size: 12px; line-height: 1.5;
  color: var(--muted); font-weight: 500; letter-spacing: 0.01em;
}

/* ---- Statement ---- */
.statement { padding: 52px 0 40px; }
.statement h1 {
  font-weight: 800;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.03;
  max-width: 15em;
}
.statement h1 .hl { color: var(--accent); }
.statement p {
  margin-top: 26px; max-width: 42em;
  font-size: 18px; line-height: 1.7; color: #cacaca;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.chip {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 7px 14px; display: inline-flex; align-items: center; gap: 7px;
}
.chip::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex: none;
}

/* ---- Category section ---- */
.sec { margin-top: 46px; }
.sec__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding-bottom: 6px;
}
.sec__count { font-size: 12px; font-weight: 500; color: var(--faint); }
.sec__desc { font-size: 15.5px; color: #b0b0b0; margin-bottom: 8px; }

/* ---- Product rows ---- */
.rows { display: flex; flex-direction: column; }
.row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px; align-items: center;
  padding: 16px; margin: 0 -16px;
  border-radius: 16px;
  color: inherit; text-decoration: none;
  transition: background .16s ease;
}
.row:hover { background: var(--bg-2); }
.row__icon {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
  background: #000; flex: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.row__icon img { width: 100%; height: 100%; object-fit: cover; }
.row__name {
  font-family: "Bricolage Grotesque", "Pretendard Variable", sans-serif;
  font-weight: 700; font-size: 21px; letter-spacing: -0.01em;
  color: var(--ink); transition: color .16s ease;
}
.row:hover .row__name { color: var(--accent-2); }
.row__desc { margin-top: 4px; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 42em; }
.row__side { text-align: right; white-space: nowrap; }
.row__plat { font-size: 12px; color: var(--muted); display: block; margin-bottom: 8px; }
.row__go {
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.row__go .arrow { transition: transform .16s ease; }
.row:hover .row__go { color: var(--accent-2); }
.row:hover .row__go .arrow { transform: translateX(4px); }

.tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid rgba(245,179,1,0.5); border-radius: 3px;
  padding: 2px 7px; margin-left: 9px; vertical-align: 3px; white-space: nowrap;
}
.tag--soft { color: var(--muted); border-color: var(--line-strong); }

/* ---- Colophon ---- */
.colophon {
  margin-top: 64px; padding: 28px 0 64px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 20px 44px;
  justify-content: space-between; align-items: baseline;
}
.colophon .cols { display: flex; flex-wrap: wrap; gap: 20px 44px; }
.colophon .lbl { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.08em; }
.colophon .val { font-size: 15px; color: var(--ink-2); margin-top: 3px; }
.colophon a { color: var(--accent); text-decoration: none; }
.colophon a:hover { color: var(--accent-2); text-decoration: underline; }
.colophon .copy { font-size: 13px; color: var(--faint); }

/* ---- Responsive ---- */
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .statement { padding: 40px 0 32px; }
  .row { grid-template-columns: 48px 1fr; gap: 8px 16px; align-items: start; }
  .row__icon { width: 48px; height: 48px; border-radius: 12px; }
  .row__side { grid-column: 1 / -1; text-align: left; padding-left: 64px; margin-top: 4px; }
  .row__plat { display: inline; margin-right: 14px; margin-bottom: 0; }
  .colophon { flex-direction: column; gap: 18px; }
}
