* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #18181b;
  --ink2: #27272a;
  --deep: #09090b;
  --muted: #52525b;
  --muted2: #a1a1aa;
  --bd: #e4e4e7;
  --s1: #fafafa;
  --s2: #f4f4f5;
  --or: #fb7427;
  --or2: #c2410c;
  --or-br: #fd9a52;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
/* ── nav ── */
.lg-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bd);
  z-index: 20;
}
.lg-nav-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.lg-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lg-logo-mark span {
  font-family: "Bebas Neue";
  font-size: 19px;
  color: var(--or);
}
.lg-logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.lg-back {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.lg-back:hover {
  color: var(--or);
}
/* ── hero ── */
.bh {
  max-width: 1080px;
  margin: 0 auto;
  padding: 78px 28px 36px;
}
.bh-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--or2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bh-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--or);
}
.bh-title {
  font-size: clamp(31px, 5.2vw, 50px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.12;
  margin-bottom: 18px;
  word-break: keep-all;
}
.bh-title em {
  font-style: normal;
  color: var(--or2);
}
.bh-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  word-break: keep-all;
}
.bh-sub b {
  color: var(--ink);
  font-weight: 700;
}
/* ── brand cards ── */
.brands {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 28px 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.brand {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  border: 1px solid var(--bd);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition:
    box-shadow 0.35s,
    transform 0.35s;
}
.brand:hover {
  box-shadow: 0 34px 78px rgba(24, 24, 27, 0.14);
  transform: translateY(-4px);
}
.brand-visual {
  position: relative;
  background-color: #0a0a0c;
  background-size: cover;
  background-position: center;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  overflow: hidden;
  transition: background-size 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand-visual {
  background-size: 112%;
}
.brand-visual::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(251, 116, 39, 0.34),
    transparent 64%
  );
  pointer-events: none;
  z-index: 1;
}
.bv-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.bv-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb7427, #c2410c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(251, 116, 39, 0.5);
  flex-shrink: 0;
}
.bv-ico svg {
  width: 27px;
  height: 27px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bv-kind {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}
.bv-main {
  position: relative;
  z-index: 2;
}
.bv-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.55);
}
.bv-word em {
  font-style: normal;
  color: var(--or-br);
}
.bv-kr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.brand-body {
  padding: 46px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-kind {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--or2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.brand-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.9px;
  margin-bottom: 11px;
}
.brand-slogan {
  font-size: 16px;
  font-weight: 700;
  color: var(--or2);
  margin-bottom: 17px;
  word-break: keep-all;
}
.brand-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  word-break: keep-all;
}
.brand-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.brand-feats span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink2);
  background: var(--s2);
  border: 1px solid var(--bd);
  padding: 7px 13px;
  border-radius: 20px;
  white-space: nowrap;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
}
.brand-link:hover {
  background: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(251, 116, 39, 0.34);
}
.brand-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ── note + cta ── */
.bnote {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px 96px;
}
.bnote-in {
  background: var(--deep);
  border-radius: 26px;
  padding: 54px 48px;
  position: relative;
  overflow: hidden;
}
.bnote-in::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(251, 116, 39, 0.18),
    transparent 64%
  );
  pointer-events: none;
}
.bnote-eyebrow {
  position: relative;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--or-br);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bnote-h {
  position: relative;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.4;
  margin-bottom: 14px;
  word-break: keep-all;
}
.bnote-h em {
  font-style: normal;
  color: var(--or-br);
}
.bnote-p {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 28px;
  word-break: keep-all;
}
.bnote-btns {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bnote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.bnote-btn.p {
  background: var(--or);
  color: #fff;
  box-shadow: 0 10px 26px rgba(251, 116, 39, 0.3);
}
.bnote-btn.p:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(251, 116, 39, 0.42);
}
.bnote-btn.s {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.bnote-btn.s:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* ── footer ── */
.lg-foot {
  border-top: 1px solid var(--bd);
  padding: 34px 28px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted2);
  font-family: "DM Mono", monospace;
  line-height: 1.9;
}
.lg-foot a {
  color: var(--muted);
  text-decoration: none;
}
.lg-foot a:hover {
  color: var(--or);
}
/* ── responsive ── */
@media (max-width: 760px) {
  .lg-nav-in {
    padding: 0 20px;
  }
  .bh {
    padding: 54px 20px 26px;
  }
  .brands {
    padding: 24px 20px 56px;
    gap: 26px;
  }
  .brand {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .brand-visual {
    min-height: auto;
    padding: 34px 26px;
  }
  .bv-word {
    font-size: 46px;
    margin-top: 30px;
  }
  .brand-body {
    padding: 32px 26px;
  }
  .brand-name {
    font-size: 24px;
  }
  .brand-link {
    width: 100%;
    justify-content: center;
  }
  .bnote {
    padding: 0 20px 70px;
  }
  .bnote-in {
    padding: 40px 28px;
    border-radius: 22px;
  }
  .bnote-btn {
    flex: 1;
    justify-content: center;
  }
}
